Skip to content

Commit

Permalink
webui: Fix redirect on sector remove
Browse files Browse the repository at this point in the history
  • Loading branch information
magik6k committed Aug 7, 2024
1 parent 5c871ab commit 20bb284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/static/pages/sector/sector-info.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ customElements.define('sector-info',class SectorInfo extends LitElement {
}
async removeSector() {
await RPCCall('SectorRemove', [this.data.SpID, this.data.SectorNumber]);
window.location.href = '/pages/pipeline_porep/pipeline_porep_sectors';
window.location.href = '/pages/pipeline_porep/';
}
async resumeSector() {
await RPCCall('SectorResume', [this.data.SpID, this.data.SectorNumber]);
Expand Down

0 comments on commit 20bb284

Please sign in to comment.