alert settings: Relocate alert_word_settings_item.hbs

Relocating alert_word_settings_item.hbs from templates/ to
templates/settings.
This commit is contained in:
Abhishek-Balaji
2020-04-19 03:22:44 +05:30
committed by Tim Abbott
parent 2ea8dfb178
commit b3ce150aac
3 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ run_test('render_alert_words_ui', () => {
word_list.set_find_results('.alert-word-item', alert_word_items);
global.stub_templates((name, args) => {
assert.equal(name, 'alert_word_settings_item');
assert.equal(name, 'settings/alert_word_settings_item');
return 'stub-' + args.word;
});

View File

@@ -1,4 +1,4 @@
const render_alert_word_settings_item = require('../templates/alert_word_settings_item.hbs');
const render_alert_word_settings_item = require('../templates/settings/alert_word_settings_item.hbs');
exports.render_alert_words_ui = function () {
const words = alert_words.get_word_list();