Commit 5492ea17 authored by Jacob Schatz's avatar Jacob Schatz

Merge branch '43837-error-handle-in-updating-milestone-on-issue' into 'master'

Loading spinner not stop even on errors in updating Milestone on Issue

Closes #43837

See merge request gitlab-org/gitlab-ce!17507
parents 80cbaf53 bb216e2b
......@@ -216,6 +216,9 @@ export default class MilestoneSelect {
$value.html(milestoneLinkNoneTemplate);
return $sidebarCollapsedValue.find('span').text('No');
}
})
.catch(() => {
$loading.fadeOut();
});
}
}
......
---
title: Stop loading spinner on error of milestone update on issue
merge_request: 17507
author: Takuya Noguchi
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment