mirror of
https://github.com/discourse/discourse-table-builder.git
synced 2025-02-22 03:30:47 +00:00
This commit moves spreadsheet logic to a component which resolves the issue where the spreadsheet only loads the first time the edit modal appears.
10 lines
193 B
JavaScript
10 lines
193 B
JavaScript
import Controller from "@ember/controller";
|
|
import { action } from "@ember/object";
|
|
|
|
export default class extends Controller {
|
|
@action
|
|
closeEditModal() {
|
|
this.send("closeModal");
|
|
}
|
|
}
|