mirror of
https://github.com/kemko/nomad.git
synced 2026-01-16 07:15:40 +03:00
* Notify a user if they try to make a variable with an existing path * Stylize error fade * Bugfix: if you click the dupe link to a variable you havent previously loaded, you lack its keyvalues * rename and typefix for duplicate path warning
8 lines
173 B
JavaScript
8 lines
173 B
JavaScript
import Route from '@ember/routing/route';
|
|
|
|
export default class VariablesVariableEditRoute extends Route {
|
|
model() {
|
|
return this.modelFor('variables.variable');
|
|
}
|
|
}
|