mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 03:23:43 +08:00
189d98f3ca
This PR converts the custom emoji UI in the admin pages to follow the new admin UI guidelines.
12 lines
262 B
JavaScript
12 lines
262 B
JavaScript
import Controller from "@ember/controller";
|
|
import { action } from "@ember/object";
|
|
|
|
export default class AdminEmojisSettingsController extends Controller {
|
|
filter = "";
|
|
|
|
@action
|
|
filterChanged(filterData) {
|
|
this.set("filter", filterData.filter);
|
|
}
|
|
}
|