-
Notifications
You must be signed in to change notification settings - Fork 306
general chat #3: support alternative styling for topic input on edits/focus/blur #1365
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
d4cd455
c193b7b
a39dc3c
51de0be
8992d1d
607ddb3
3a315b9
5fa846c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -379,6 +379,13 @@ | |
"@composeBoxTopicHintText": { | ||
"description": "Hint text for topic input widget in compose box." | ||
}, | ||
"composeBoxEnterTopicOrSkipHintText": "Enter a topic (skip for “{defaultTopicName}”)", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When you rebase, this commit will need a |
||
"@composeBoxEnterTopicOrSkipHintText": { | ||
"description": "Hint text for topic input widget in compose box when topics are optional.", | ||
"placeholders": { | ||
"defaultTopicName": {"type": "String", "example": "general chat"} | ||
} | ||
}, | ||
"composeBoxUploadingFilename": "Uploading {filename}…", | ||
"@composeBoxUploadingFilename": { | ||
"description": "Placeholder in compose box showing the specified file is currently uploading.", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -577,6 +577,7 @@ class PerAccountStore extends PerAccountStoreBase with ChangeNotifier, EmojiStor | |
/// be empty otherwise. | ||
// TODO(server-10) simplify this | ||
String get realmEmptyTopicDisplayName { | ||
assert(zulipFeatureLevel >= 334); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this would be better in a separate commit after this one. |
||
assert(_realmEmptyTopicDisplayName != null); // TODO(log) | ||
return _realmEmptyTopicDisplayName ?? 'general chat'; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Commit-message nits: