Skip to content

Commit a63a26c

Browse files
committed
Fix JS linting issue
1 parent f06f19e commit a63a26c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FrontEnd/scripts/controllers/use_this_package_panel_controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class UseThisPackagePanelController extends Controller {
2727
const packageName = optionElement.dataset.package
2828
const productName = optionElement.dataset.product
2929
const type = optionElement.dataset.type
30-
const prefix = type == "plugin" ? ".plugin" : ".product"
30+
const prefix = type == 'plugin' ? '.plugin' : '.product'
3131
this.snippetTarget.value = `${prefix}(name: "${productName}", package: "${packageName}")`
3232
}
3333
}

0 commit comments

Comments
 (0)