Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.

Commit 59d067d

Browse files
committed
Revert initial symbol
1 parent bc09749 commit 59d067d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

gulpfile.babel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ gulp.task(
1212
gulp.series(done => {
1313
connect.server({
1414
root : 'www',
15-
port : 8080,
15+
port : 80,
1616
livereload: true,
1717
});
1818
done();
@@ -24,7 +24,7 @@ gulp.task(
2424
gulp.series(done => {
2525
gulp.src('www/index.html').pipe(
2626
open({
27-
uri: 'http://localhost:8080/',
27+
uri: 'http://localhost:80/',
2828
})
2929
);
3030
done();

src/botPage/view/Dialogs/Chart.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import Dialog from './Dialog';
1616
import ChartTicksService from '../../common/ChartTicksService';
1717
import { observer as globalObserver } from '../../../common/utils/observer';
1818
import { getLanguage } from '../../../common/lang';
19+
import { fieldGeneratorMapping } from '../blockly/blocks/shared';
1920

2021
setSmartChartsPublicPath('./js/');
2122

@@ -44,7 +45,7 @@ class ChartContent extends PureComponent {
4445
this.state = {
4546
chartType : 'mountain',
4647
granularity: 0,
47-
symbol : '',
48+
symbol : 'R_100',
4849
barrierType: undefined,
4950
high : undefined,
5051
low : undefined,

0 commit comments

Comments
 (0)