replaced ti-plane-departure
This commit is contained in:
parent
721b41a436
commit
180ba9f5df
3 changed files with 4 additions and 3 deletions
|
@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div v-if="user" :class="$style.root">
|
<div v-if="user" :class="$style.root">
|
||||||
<i class="ph-airplane-takeoff ph-bold ph-lg" style="margin-right: 8px;"></i>
|
<i class="ti ti-plane-departure" style="margin-right: 8px;"></i>
|
||||||
{{ i18n.ts.accountMoved }}
|
{{ i18n.ts.accountMoved }}
|
||||||
<MkMention :class="$style.link" :username="user.username" :host="user.host ?? localHost"/>
|
<MkMention :class="$style.link" :username="user.username" :host="user.host ?? localHost"/>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -28,7 +28,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
</MkFolder>
|
</MkFolder>
|
||||||
|
|
||||||
<MkFolder :defaultOpen="!!$i.movedTo">
|
<MkFolder :defaultOpen="!!$i.movedTo">
|
||||||
<template #icon><i class="ph-airplane-takeoff ph-bold ph-lg"></i></template>
|
<template #icon><i class="ti ti-plane-departure"></i></template>
|
||||||
<template #label>{{ i18n.ts._accountMigration.moveTo }}</template>
|
<template #label>{{ i18n.ts._accountMigration.moveTo }}</template>
|
||||||
|
|
||||||
<div class="_gaps_m">
|
<div class="_gaps_m">
|
||||||
|
@ -39,7 +39,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<FormInfo warn>{{ i18n.ts._accountMigration.moveCannotBeUndone }}</FormInfo>
|
<FormInfo warn>{{ i18n.ts._accountMigration.moveCannotBeUndone }}</FormInfo>
|
||||||
|
|
||||||
<MkInput v-model="moveToAccount">
|
<MkInput v-model="moveToAccount">
|
||||||
<template #prefix><i class="ph-airplane-takeoff ph-bold ph-lg"></i></template>
|
<template #prefix><i class="ti ti-plane-departure"></i></template>
|
||||||
<template #label>{{ i18n.ts._accountMigration.moveToLabel }}</template>
|
<template #label>{{ i18n.ts._accountMigration.moveToLabel }}</template>
|
||||||
</MkInput>
|
</MkInput>
|
||||||
<MkButton inline danger :disabled="!moveToAccount" @click="move">
|
<MkButton inline danger :disabled="!moveToAccount" @click="move">
|
||||||
|
|
|
@ -166,6 +166,7 @@ export function getConfig(): UserConfig {
|
||||||
'ti ti-user-exclamation': 'ph-warning-circle ph-bold ph-lg',
|
'ti ti-user-exclamation': 'ph-warning-circle ph-bold ph-lg',
|
||||||
'ti ti-info-circle': 'ph-info ph-bold ph-lg',
|
'ti ti-info-circle': 'ph-info ph-bold ph-lg',
|
||||||
'ti ti-checklist': 'ph-list-checks ph-bold ph-lg',
|
'ti ti-checklist': 'ph-list-checks ph-bold ph-lg',
|
||||||
|
'ti ti-plane-departure': 'ph-airplane-takeoff ph-bold ph-lg',
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
...process.env.NODE_ENV === 'production'
|
...process.env.NODE_ENV === 'production'
|
||||||
|
|
Loading…
Reference in a new issue