File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export abstract class View {
32
32
33
33
_m = defg ( this , '_m' , {
34
34
tag_upd : $any ( null ) ,
35
- tag_rm_idx : 0
35
+ tag_upd_idx : 0
36
36
} )
37
37
38
38
onSelect ( selected : user . BookmarkEntry , flags : SelectionFlags ) : number {
@@ -112,7 +112,7 @@ export abstract class View {
112
112
if ( ! this . pstore . loading ( true ) ) return false
113
113
114
114
this . _m . tag_upd = null
115
- this . _m . tag_rm_idx = idx
115
+ this . _m . tag_upd_idx = idx
116
116
117
117
let pstore = this . pstore ,
118
118
selected = pstore . pager . pojo ,
@@ -134,7 +134,7 @@ export abstract class View {
134
134
135
135
if ( ! entry ) {
136
136
// remove
137
- array . splice ( this . _m . tag_rm_idx , 1 )
137
+ array . splice ( this . _m . tag_upd_idx , 1 )
138
138
} else if ( ! array . length ) {
139
139
// initialize array
140
140
array = [ copy ]
You can’t perform that action at this time.
0 commit comments