Skip to content
Merged
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/accessibility/js/accessibility.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/accessibility/js/accessibility.js.map

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions apps/accessibility/js/accessibilityoca.js

This file was deleted.

6 changes: 3 additions & 3 deletions apps/accessibility/src/Accessibility.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default {
.replace('{linkend}', '</a>')
},
guidelinesLink() {
return `<a target="_blank" href="https://www.w3.org/WAI/standards-guidelines/wcag/" rel="noreferrer nofollow">`
return '<a target="_blank" href="https://www.w3.org/WAI/standards-guidelines/wcag/" rel="noreferrer nofollow">'
},
descriptionDetail() {
return t(
Expand All @@ -80,10 +80,10 @@ export default {
.replace(/\{linkend\}/g, '</a>')
},
issuetrackerLink() {
return `<a target="_blank" href="https://github.com/nextcloud/server/issues/" rel="noreferrer nofollow">`
return '<a target="_blank" href="https://github.com/nextcloud/server/issues/" rel="noreferrer nofollow">'
},
designteamLink() {
return `<a target="_blank" href="https://nextcloud.com/design" rel="noreferrer nofollow">`
return '<a target="_blank" href="https://nextcloud.com/design" rel="noreferrer nofollow">'
},
},
methods: {
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard/js/dashboard.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/dashboard/js/dashboard.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/files/js/dist/files-app-settings.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/files/js/dist/files-app-settings.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/files/js/dist/personal-settings.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/files/js/dist/personal-settings.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/files/js/dist/sidebar.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/files/js/dist/sidebar.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/files/src/services/Sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default class Sidebar {
this.#state.views.push(view)
return true
}
console.error(`A similar view already exists`, view)
console.error('A similar view already exists', view)
return false
}

Expand Down
3 changes: 2 additions & 1 deletion apps/files_sharing/js/app.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/**
* Copyright (c) 2014 Vincent Petry <pvince81@owncloud.com>
*
* This file is licensed under the Affero General Public License version 3
Expand All @@ -14,6 +14,7 @@ if (!OCA.Sharing) {
*/
OCA.Sharing = {}
}

/**
* @namespace
*/
Expand Down
2 changes: 1 addition & 1 deletion apps/files_sharing/js/dist/files_sharing.js.map

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/files_sharing/js/dist/personal-settings.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/files_sharing/js/dist/personal-settings.js.map

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions apps/files_sharing/src/components/SharingEntry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -268,10 +268,10 @@ export default {
* Can the sharee edit the shared file ?
*/
canEdit: {
get: function() {
get() {
return this.share.hasUpdatePermission
},
set: function(checked) {
set(checked) {
this.updatePermissions({ isEditChecked: checked })
},
},
Expand All @@ -280,10 +280,10 @@ export default {
* Can the sharee create the shared file ?
*/
canCreate: {
get: function() {
get() {
return this.share.hasCreatePermission
},
set: function(checked) {
set(checked) {
this.updatePermissions({ isCreateChecked: checked })
},
},
Expand All @@ -292,10 +292,10 @@ export default {
* Can the sharee delete the shared file ?
*/
canDelete: {
get: function() {
get() {
return this.share.hasDeletePermission
},
set: function(checked) {
set(checked) {
this.updatePermissions({ isDeleteChecked: checked })
},
},
Expand All @@ -304,10 +304,10 @@ export default {
* Can the sharee reshare the file ?
*/
canReshare: {
get: function() {
get() {
return this.share.hasSharePermission
},
set: function(checked) {
set(checked) {
this.updatePermissions({ isReshareChecked: checked })
},
},
Expand All @@ -325,10 +325,10 @@ export default {
* @returns {boolean}
*/
hasExpirationDate: {
get: function() {
get() {
return this.config.isDefaultInternalExpireDateEnforced || !!this.share.expireDate
},
set: function(enabled) {
set(enabled) {
this.share.expireDate = enabled
? this.config.defaultInternalExpirationDateString !== ''
? this.config.defaultInternalExpirationDateString
Expand Down
1 change: 1 addition & 0 deletions apps/files_sharing/src/files_sharing.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ import '../js/sharedfilelist'

// eslint-disable-next-line camelcase
__webpack_nonce__ = btoa(OC.requestToken)

// eslint-disable-next-line camelcase
__webpack_public_path__ = OC.linkTo('files_sharing', 'js/dist/')
2 changes: 1 addition & 1 deletion apps/files_sharing/src/services/ExternalLinkActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default class ExternalLinkActions {
this.#state.actions.push(action)
return true
}
console.error(`Invalid action provided`, action)
console.error('Invalid action provided', action)
return false
}

Expand Down
2 changes: 1 addition & 1 deletion apps/files_sharing/src/services/ShareSearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default class ShareSearch {
this.#state.results.push(result)
return true
}
console.error(`Invalid search result provided`, result)
console.error('Invalid search result provided', result)
return false
}

Expand Down
2 changes: 1 addition & 1 deletion apps/oauth2/js/oauth2.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/oauth2/js/oauth2.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/settings/js/vue-0.js.map

Large diffs are not rendered by default.

3,332 changes: 0 additions & 3,332 deletions apps/settings/js/vue-1.js

This file was deleted.

1 change: 0 additions & 1 deletion apps/settings/js/vue-1.js.map

This file was deleted.

5,013 changes: 0 additions & 5,013 deletions apps/settings/js/vue-2.js

This file was deleted.

1 change: 0 additions & 1 deletion apps/settings/js/vue-2.js.map

This file was deleted.

354 changes: 0 additions & 354 deletions apps/settings/js/vue-3.js

This file was deleted.

1 change: 0 additions & 1 deletion apps/settings/js/vue-3.js.map

This file was deleted.

4,120 changes: 0 additions & 4,120 deletions apps/settings/js/vue-4.js

This file was deleted.

1 change: 0 additions & 1 deletion apps/settings/js/vue-4.js.map

This file was deleted.

4 changes: 2 additions & 2 deletions apps/settings/js/vue-5.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/settings/js/vue-5.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions apps/settings/js/vue-7.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/settings/js/vue-7.js.map

Large diffs are not rendered by default.

375 changes: 0 additions & 375 deletions apps/settings/js/vue-editor-collab.js

This file was deleted.

1 change: 0 additions & 1 deletion apps/settings/js/vue-editor-collab.js.map

This file was deleted.

Loading