Skip to content

Commit 20bb284

Browse files
committed
webui: Fix redirect on sector remove
1 parent 5c871ab commit 20bb284

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/static/pages/sector/sector-info.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ customElements.define('sector-info',class SectorInfo extends LitElement {
1414
}
1515
async removeSector() {
1616
await RPCCall('SectorRemove', [this.data.SpID, this.data.SectorNumber]);
17-
window.location.href = '/pages/pipeline_porep/pipeline_porep_sectors';
17+
window.location.href = '/pages/pipeline_porep/';
1818
}
1919
async resumeSector() {
2020
await RPCCall('SectorResume', [this.data.SpID, this.data.SectorNumber]);

0 commit comments

Comments
 (0)