Skip to content
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

Remove space #40700

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/files_sharing/src/views/SharingDetailsTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@

computed: {
title() {
let title = t('files_sharing', 'Share with ')
let title = t('files_sharing', 'Share with') + " "

Check failure on line 281 in apps/files_sharing/src/views/SharingDetailsTab.vue

View workflow job for this annotation

GitHub Actions / eslint

Strings must use singlequote
if (this.share.type === this.SHARE_TYPES.SHARE_TYPE_USER) {
title = title + this.share.shareWithDisplayName
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As per https://docs.nextcloud.com/server/latest/developer_manual/basics/front-end/l10n.html#improving-your-translations this is not good.
It would be better to have a full t() in each of the else-if branches?

} else if (this.share.type === this.SHARE_TYPES.SHARE_TYPE_LINK) {
Expand Down
3 changes: 3 additions & 0 deletions dist/4815-4815.js

Large diffs are not rendered by default.

File renamed without changes.
1 change: 1 addition & 0 deletions dist/4815-4815.js.map

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions dist/485-485.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/485-485.js.map

This file was deleted.

4 changes: 2 additions & 2 deletions dist/files_sharing-files_sharing_tab.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/files_sharing-files_sharing_tab.js.map

Large diffs are not rendered by default.

Loading