diff options
| author | dakkar <dakkar@thenautilus.net> | 2024-06-21 18:03:27 +0100 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2024-06-22 15:53:13 +0100 |
| commit | 48d29fa1ae9c7595647a569fc535e2cf1c026e0b (patch) | |
| tree | bdef83ff29aef63c40996c280eb300659feb4f9d /packages/frontend/src/components | |
| parent | replaced ti-leaf and ti-hash (diff) | |
| download | sharkey-48d29fa1ae9c7595647a569fc535e2cf1c026e0b.tar.gz sharkey-48d29fa1ae9c7595647a569fc535e2cf1c026e0b.tar.bz2 sharkey-48d29fa1ae9c7595647a569fc535e2cf1c026e0b.zip | |
replaced ti-hourglass-empty and ti-search
Diffstat (limited to 'packages/frontend/src/components')
| -rw-r--r-- | packages/frontend/src/components/MkFollowButton.vue | 2 | ||||
| -rw-r--r-- | packages/frontend/src/components/MkGoogle.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkFollowButton.vue b/packages/frontend/src/components/MkFollowButton.vue index cbdf531284..ba0527e570 100644 --- a/packages/frontend/src/components/MkFollowButton.vue +++ b/packages/frontend/src/components/MkFollowButton.vue @@ -12,7 +12,7 @@ SPDX-License-Identifier: AGPL-3.0-only > <template v-if="!wait"> <template v-if="hasPendingFollowRequestFromYou && user.isLocked"> - <span v-if="full" :class="$style.text">{{ i18n.ts.followRequestPending }}</span><i class="ph-hourglass ph-bold ph-lg"></i> + <span v-if="full" :class="$style.text">{{ i18n.ts.followRequestPending }}</span><i class="ti ti-hourglass-empty"></i> </template> <template v-else-if="hasPendingFollowRequestFromYou && !user.isLocked"> <!-- つまりリモートフォローの場合。 --> diff --git a/packages/frontend/src/components/MkGoogle.vue b/packages/frontend/src/components/MkGoogle.vue index d1809d1073..54c7585f18 100644 --- a/packages/frontend/src/components/MkGoogle.vue +++ b/packages/frontend/src/components/MkGoogle.vue @@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only <template> <div :class="$style.root"> <input v-model="query" :class="$style.input" type="search" :placeholder="q"> - <button :class="$style.button" @click="search"><i class="ph-magnifying-glass ph-bold ph-lg"></i> {{ i18n.ts.searchByGoogle }}</button> + <button :class="$style.button" @click="search"><i class="ti ti-search"></i> {{ i18n.ts.searchByGoogle }}</button> </div> </template> |