mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 00:04:59 +08:00
![Jarek Radosz](/assets/img/avatar_default.png)
Previously it would go to the "html" page when refreshing on the "css" page, and would open an invalid empty-state page when trying to go to the "email style" tab when already on it.
8 lines
136 B
JavaScript
8 lines
136 B
JavaScript
import Route from "@ember/routing/route";
|
|
|
|
export default Route.extend({
|
|
model() {
|
|
return this.store.find("email-style");
|
|
}
|
|
});
|