Skip to content

Commit

Permalink
fix: fix scoped style leakage
Browse files Browse the repository at this point in the history
  • Loading branch information
ktsn committed Apr 20, 2018
1 parent fbf8156 commit de82d01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/vue-file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export function parseVueFile(code: string, uri: string): VueFile {
}

export function vueFileToPayload(vueFile: VueFile): VueFilePayload {
const scopeId = hashsum(vueFile.uri)
const scopeId = hashsum(vueFile.uri.toString())

return {
uri: vueFile.uri.toString(),
Expand Down

0 comments on commit de82d01

Please sign in to comment.