logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git

group_setting.js (215B)


  1. import { isEqual } from 'lodash'
  2. import Setting from './setting.js'
  3. export default {
  4. ...Setting,
  5. computed: {
  6. ...Setting.computed,
  7. isDirty () {
  8. return !isEqual(this.state, this.draft)
  9. }
  10. }
  11. }