Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!12116
Added fullstop for plain text field descriptions.
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Open
Added fullstop for plain text field descriptions.
issue/drupal-3405111:3405111-enhancing-field-descriptions-plain-text
into
11.x
Overview
0
Commits
1
Pipelines
1
Changes
1
Open
Added fullstop for plain text field descriptions.
snehal
requested to merge
issue/drupal-3405111:3405111-enhancing-field-descriptions-plain-text
into
11.x
3 months ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Closes
#3405111
0
0
Merge request reports
Compare
11.x
11.x (HEAD)
and
latest version
latest version
ecd38e6a
1 commit,
3 months ago
1 file
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
core/lib/Drupal/Core/Field/Plugin/Field/FieldType/StringLongItem.php
+
3
−
3
View file @ 111465c5
Edit in single-file editor
Open in Web IDE
Show full file
@@ -15,9 +15,9 @@
id
:
"string_long"
,
label
:
new
TranslatableMarkup
(
"Text (plain, long)"
),
description
:
[
new
TranslatableMarkup
(
"Ideal for longer texts, like body or description"
),
new
TranslatableMarkup
(
"Supports long text without specifying a maximum length"
),
new
TranslatableMarkup
(
"May use more storage and be slower for searching and sorting"
),
new
TranslatableMarkup
(
"Ideal for longer texts, like body or description
.
"
),
new
TranslatableMarkup
(
"Supports long text without specifying a maximum length
.
"
),
new
TranslatableMarkup
(
"May use more storage and be slower for searching and sorting
.
"
),
],
category
:
"plain_text"
,
default_widget
:
"string_textarea"
,
Loading