client/tags: fix renaming tag not redirecting url
This commit is contained in:
parent
7ea4718b1b
commit
ed05ac3c57
|
@ -120,6 +120,9 @@ class TagsController {
|
||||||
|
|
||||||
_saveTag(tag, input) {
|
_saveTag(tag, input) {
|
||||||
return api.put('/tag/' + tag.names[0], input).then(response => {
|
return api.put('/tag/' + tag.names[0], input).then(response => {
|
||||||
|
if (input.names && input.names[0] !== tag.names[0]) {
|
||||||
|
page('/tag/' + input.names[0]);
|
||||||
|
}
|
||||||
events.notify(events.Success, 'Tag saved.');
|
events.notify(events.Success, 'Tag saved.');
|
||||||
return Promise.resolve();
|
return Promise.resolve();
|
||||||
}, response => {
|
}, response => {
|
||||||
|
|
Loading…
Reference in New Issue