mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
[fix] Wrong variable name due to copy-paste sunday.
This commit is contained in:
parent
8808a5f327
commit
0b34df0b38
1 changed files with 3 additions and 3 deletions
|
@ -713,9 +713,9 @@ app = Sammy('#main', function (sam) {
|
|||
data.settings.allowed_users = (data.settings.allowed_users) ? data.settings.allowed_users.replace(',', ', ') : '';
|
||||
|
||||
// Multilingual description
|
||||
appData.description = (typeof appData.manifest.description[y18n.locale] !== 'indefined') ?
|
||||
appData.manifest.description[y18n.locale] :
|
||||
appData.manifest.description['en']
|
||||
data.description = (typeof data.manifest.description[y18n.locale] !== 'indefined') ?
|
||||
data.manifest.description[y18n.locale] :
|
||||
data.manifest.description['en']
|
||||
;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue