From c3f9b2dcc3081b25fe856e694a5626992c286d91 Mon Sep 17 00:00:00 2001 From: Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com> Date: Thu, 12 Sep 2019 21:27:44 +0900 Subject: Resolve #5420 (#5421) --- src/client/app/admin/views/instance.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/client/app/admin/views/instance.vue') diff --git a/src/client/app/admin/views/instance.vue b/src/client/app/admin/views/instance.vue index 2d0fc9b40c..223b3531e8 100644 --- a/src/client/app/admin/views/instance.vue +++ b/src/client/app/admin/views/instance.vue @@ -461,7 +461,7 @@ export default Vue.extend({ iconUrl: this.iconUrl, name: this.name, description: this.description, - langs: this.languages.split(' '), + langs: this.languages ? this.languages.split(' ') : [], cacheRemoteFiles: this.cacheRemoteFiles, localDriveCapacityMb: parseInt(this.localDriveCapacityMb, 10), remoteDriveCapacityMb: parseInt(this.remoteDriveCapacityMb, 10), @@ -490,8 +490,8 @@ export default Vue.extend({ enableServiceWorker: this.enableServiceWorker, swPublicKey: this.swPublicKey, swPrivateKey: this.swPrivateKey, - pinnedUsers: this.pinnedUsers.split('\n'), - hiddenTags: this.hiddenTags.split('\n'), + pinnedUsers: this.pinnedUsers ? this.pinnedUsers.split('\n') : [], + hiddenTags: this.hiddenTags ? this.hiddenTags.split('\n') : [], useObjectStorage: this.useObjectStorage, objectStorageBaseUrl: this.objectStorageBaseUrl ? this.objectStorageBaseUrl : null, objectStorageBucket: this.objectStorageBucket ? this.objectStorageBucket : null, -- cgit v1.2.3-freya