pleroma-fe/src/components/settings_modal/helpers/choice_setting.js
Henry Jameson af0cd54223 serverSideConfig renamed into profileSettingConfig to avoid confusion
with serverSideStorage, reduced overall need for SharedComputedObject in
settings tabs, moved copypaste code of "setting" type of helpers into a
separate file.
2023-03-12 14:36:49 +02:00

21 lines
432 B
JavaScript

import Select from 'src/components/select/select.vue'
import ModifiedIndicator from './modified_indicator.vue'
import ProfileSettingIndicator from './profile_setting_indicator.vue'
import Setting from './setting.js'
export default {
components: {
Select,
ModifiedIndicator,
ProfileSettingIndicator
},
...Setting,
props: {
...Setting.props,
options: {
type: Array,
required: true
}
}
}