Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F7889701
profile_setting_indicator.vue
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
974 B
Referenced Files
None
Subscribers
None
profile_setting_indicator.vue
View Options
<template>
<span
v-if="isProfile"
class="ProfileSettingIndicator"
>
<Popover
trigger="hover"
>
<template #trigger>
<FAIcon
icon="server"
:aria-label="$t('settings.setting_server_side')"
/>
</template>
<template #content>
<div class="profilesetting-tooltip">
{{ $t('settings.setting_server_side') }}
</div>
</template>
</Popover>
</span>
</template>
<script>
import Popover from 'src/components/popover/popover.vue'
import { library } from '@fortawesome/fontawesome-svg-core'
import { faServer } from '@fortawesome/free-solid-svg-icons'
library.add(
faServer
)
export default {
components: { Popover },
props: ['isProfile']
}
</script>
<style lang="scss">
.ProfileSettingIndicator {
display: inline-block;
position: relative;
}
.profilesetting-tooltip {
margin: 0.5em 1em;
min-width: 10em;
text-align: center;
}
</style>
File Metadata
Details
Attached
Mime Type
text/html
Expires
Thu, Oct 2, 2:41 AM (1 d, 3 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
469553
Default Alt Text
profile_setting_indicator.vue (974 B)
Attached To
Mode
rPUFE pleroma-fe-upstream
Attached
Detach File
Event Timeline
Log In to Comment