Skip to content

Commit 6b25c25

Browse files
committed
[fix]还原部分http
1 parent 17ee963 commit 6b25c25

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/leaflet/components/clientcomputation/ClientComputationView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ export var ClientComputationView = ComponentsViewBase.extend({
308308
let analysisingBtn = L.DomUtil.create('div', 'component-analysis__analysisbtn--analysising', analysingContainer);
309309
let svgContainer = L.DomUtil.create('div', 'component-analysis__svg-container', analysisingBtn);
310310
svgContainer.id = 'analyse_background';
311-
svgContainer.innerHTML = `<svg class="component-analysis__svg-rotate" width="16px" height="16px" version="1.1" xmlns="https://www.w3.org/2000/svg">
311+
svgContainer.innerHTML = `<svg class="component-analysis__svg-rotate" width="16px" height="16px" version="1.1" xmlns="http://www.w3.org/2000/svg">
312312
<path id="ring" fill="#FFF" transform="translate(8,8)" d="M 0 0 v -8 A 8 8 0 1 1 -8.00 0 z"></path>
313313
<circle cx="8" cy="8" r="6" fill="#38ADF5"></circle>
314314
<rect class="svg-top" x="8" y="0" rx="2" ry="2" width="2" height="2" style="fill: rgb(255, 255, 255); stroke-width: 0;"></rect>

src/leaflet/components/dataservicequery/DataServiceQueryView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ export var DataServiceQueryView = ComponentsViewBase.extend({
231231
let analysingContainer = L.DomUtil.create('div', 'component-analysis__analysisbtn--analysing-container hidden', runBtn);
232232
let analysisingBtn = L.DomUtil.create('div', 'component-analysis__analysisbtn--analysising component-servicequery__querybtn--querying', analysingContainer);
233233
let svgContainer = L.DomUtil.create('div', 'component-analysis__svg-container', analysisingBtn);
234-
svgContainer.innerHTML = `<svg class="component-analysis__svg-rotate" width="16px" height="16px" version="1.1" xmlns="https://www.w3.org/2000/svg">
234+
svgContainer.innerHTML = `<svg class="component-analysis__svg-rotate" width="16px" height="16px" version="1.1" xmlns="http://www.w3.org/2000/svg">
235235
<path id="ring" fill="#FFF" transform="translate(8,8)" d="M 0 0 v -8 A 8 8 0 1 1 -8.00 0 z"></path>
236236
<circle cx="8" cy="8" r="6" fill="#38ADF5"></circle>
237237
<rect class="svg-top" x="8" y="0" rx="2" ry="2" width="2" height="2" style="fill: rgb(255, 255, 255); stroke-width: 0;"></rect>

src/leaflet/components/distributedanalysis/DistributedAnalysisView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ export var DistributedAnalysisView = ComponentsViewBase.extend({
274274
let analysisingBtn = L.DomUtil.create('div', 'component-analysis__analysisbtn--analysising', analysingContainer);
275275
analysisingBtn.style.width = '200px';
276276
let svgContainer = L.DomUtil.create('div', 'component-analysis__svg-container', analysisingBtn);
277-
svgContainer.innerHTML = `<svg class="component-analysis__svg-rotate" width="16px" height="16px" version="1.1" xmlns="https://www.w3.org/2000/svg">
277+
svgContainer.innerHTML = `<svg class="component-analysis__svg-rotate" width="16px" height="16px" version="1.1" xmlns="http://www.w3.org/2000/svg">
278278
<path id="ring" fill="#FFF" transform="translate(8,8)" d="M 0 0 v -8 A 8 8 0 1 1 -8.00 0 z"></path>
279279
<circle cx="8" cy="8" r="6" fill="#38ADF5"></circle>
280280
<rect class="svg-top" x="8" y="0" rx="2" ry="2" width="2" height="2" style="fill: rgb(255, 255, 255); stroke-width: 0;"></rect>

0 commit comments

Comments
 (0)