mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Merge pull request #402 from eauchat/patch-1
Resolve app install interface blank when app manifest argument is missing "ask" value
This commit is contained in:
commit
9a7e232da5
1 changed files with 2 additions and 2 deletions
|
@ -8,13 +8,13 @@ import { isObjectLiteral, isEmptyValue, flattenObjectLiteral } from '@/helpers/c
|
||||||
* Tries to find a translation corresponding to the user's locale/fallback locale in a
|
* Tries to find a translation corresponding to the user's locale/fallback locale in a
|
||||||
* Yunohost argument or simply return the string if it's not an object literal.
|
* Yunohost argument or simply return the string if it's not an object literal.
|
||||||
*
|
*
|
||||||
* @param {(Object|String)} field - A field value containing a translation object or string
|
* @param {(Object|String|undefined)} field - A field value containing a translation object or string
|
||||||
* @return {String}
|
* @return {String}
|
||||||
*/
|
*/
|
||||||
export function formatI18nField (field) {
|
export function formatI18nField (field) {
|
||||||
if (typeof field === 'string') return field
|
if (typeof field === 'string') return field
|
||||||
const { locale, fallbackLocale } = store.state
|
const { locale, fallbackLocale } = store.state
|
||||||
return field[locale] || field[fallbackLocale] || field.en
|
return field ? field[locale] || field[fallbackLocale] || field.en : ''
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue