Skip to content

Commit

Permalink
Fix ServerTag#removeRules not emptying marker correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
kitten committed Feb 14, 2018
1 parent aaee314 commit 980bfc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/StyleTags.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ const makeServerTag = (): Tag<[string]> => {
const removeRules = id => {
const marker = markers[id]
if (marker === undefined) return
marker[0] = makeTextMarker(id)
marker[0] = ''
resetIdNames(names, id)
}

Expand Down

0 comments on commit 980bfc1

Please sign in to comment.