@@ -268,7 +268,7 @@ export default {
268268 },
269269 set (value ) {
270270 this .ensureMutableViewSettings ()
271- this .$set ( this . mutableView .viewSettings , ' cardBackgroundSource' , value ?? null )
271+ this .mutableView .viewSettings . cardBackgroundSource = value ?? null
272272 },
273273 },
274274 titleSourceValue: {
@@ -277,7 +277,7 @@ export default {
277277 },
278278 set (value ) {
279279 this .ensureMutableViewSettings ()
280- this .$set ( this . mutableView .viewSettings , ' cardTitleSource' , value ?? null )
280+ this .mutableView .viewSettings . cardTitleSource = value ?? null
281281 },
282282 },
283283 saveText () {
@@ -495,8 +495,8 @@ export default {
495495 const secondColumnId = this .mutableView .columnSettings ? .[1 ]? .columnId ?? firstColumnId
496496 const backgroundSource = this .mutableView .viewSettings .cardBackgroundSource ?? this .viewSetting ? .viewSettings ? .cardBackgroundSource ?? firstColumnId
497497 const titleSource = this .mutableView .viewSettings .cardTitleSource ?? this .viewSetting ? .viewSettings ? .cardTitleSource ?? secondColumnId
498- this .$set ( this . mutableView .viewSettings , ' cardBackgroundSource' , backgroundSource)
499- this .$set ( this . mutableView .viewSettings , ' cardTitleSource' , titleSource)
498+ this .mutableView .viewSettings . cardBackgroundSource = backgroundSource
499+ this .mutableView .viewSettings . cardTitleSource = titleSource
500500 this .errorTitle = false
501501 this .selectedColumns = this .mutableView .columnSettings ? this .mutableView .columnSettings .map (item => item .columnId ) : null
502502 this .allColumns = []
@@ -505,10 +505,10 @@ export default {
505505 },
506506 ensureMutableViewSettings () {
507507 if (! this .mutableView .viewSettings ) {
508- this .$set ( this . mutableView , ' viewSettings' , {
508+ this .mutableView . viewSettings = {
509509 cardBackgroundSource: null ,
510510 cardTitleSource: null ,
511- })
511+ }
512512 }
513513 },
514514 resolveCardSourceValue (stored , fallbackIndex ) {
@@ -521,8 +521,8 @@ export default {
521521 },
522522 persistCardSourceFallbacks () {
523523 this .ensureMutableViewSettings ()
524- this .$set ( this . mutableView .viewSettings , ' cardBackgroundSource' , this .resolveCardSourceValue (this .mutableView .viewSettings .cardBackgroundSource , 0 ) )
525- this .$set ( this . mutableView .viewSettings , ' cardTitleSource' , this .resolveCardSourceValue (this .mutableView .viewSettings .cardTitleSource , 1 ) )
524+ this .mutableView .viewSettings . cardBackgroundSource = this .resolveCardSourceValue (this .mutableView .viewSettings .cardBackgroundSource , 0 )
525+ this .mutableView .viewSettings . cardTitleSource = this .resolveCardSourceValue (this .mutableView .viewSettings .cardTitleSource , 1 )
526526 },
527527 loadEmoji () {
528528 const emojis = [' 😀' , ' 😃' , ' 😄' , ' 😁' , ' 😆' , ' 😅' , ' 🤣' , ' 😂' , ' 🙂' , ' 🙃' , ' 🫠' , ' 😉' , ' 😊' , ' 😇' ]
0 commit comments