Remove unused variables in shart-report

This commit is contained in:
Mark VanLandingham 2019-10-28 16:13:43 -05:00
parent 446e6bf29c
commit 960c126cc9
1 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ export default Ember.Component.extend({
},
actions: {
open(e) {
open() {
this.set("visible", true);
window.setTimeout(
() =>
@ -79,7 +79,7 @@ export default Ember.Component.extend({
);
},
close(e) {
close() {
this.set("visible", false);
}
}