瀏覽代碼

Fixed a bad URL in the allocations UI

Neal Ormsbee 5 年之前
父節點
當前提交
5e37d2fb37
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ui/src/services/allocation.js

+ 1 - 1
ui/src/services/allocation.js

@@ -1,7 +1,7 @@
 import axios from 'axios';
 
 class AllocationService {
-  BASE_URL = 'http://localhost:9090/model/allocation';
+  BASE_URL = 'http://localhost:9090/allocation';
 
   async fetchAllocation(win, aggregate, options) {
     const { accumulate, filters, } = options;