pleroma-fe/src/components/settings_modal/helpers/group_setting.js

14 行
215 B
JavaScript

import { isEqual } from 'lodash'
import Setting from './setting.js'
export default {
...Setting,
computed: {
...Setting.computed,
isDirty () {
return !isEqual(this.state, this.draft)
}
}
}