[dev] correct backends/cdn paths

This commit is contained in:
Maksim Kozhukh
2026-01-13 11:05:02 +01:00
parent ad5994b8bf
commit c57c4cdc12
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ const parseDates = (data) => {
};
export default function GanttBackend() {
const server = 'https://master--svar-gantt-go--dev.webix.io';
const server = 'https://gantt-backend.svar.dev';
const [api, setApi] = useState();
const [tasks, setTasks] = useState([]);
+1 -1
View File
@@ -5,7 +5,7 @@ import { Gantt, ContextMenu, Editor } from '../../src';
export default function GanttBatchProvider() {
const restProvider = useMemo(
() =>
new RestDataProvider('https://master--svar-gantt-go--dev.webix.io', {
new RestDataProvider('https://gantt-backend.svar.dev', {
batchURL: 'batch',
}),
[],
+1 -1
View File
@@ -4,7 +4,7 @@ import { Gantt, ContextMenu, Editor } from '../../src';
export default function GanttProvider() {
const restProvider = useMemo(
() => new RestDataProvider('https://master--svar-gantt-go--dev.webix.io'),
() => new RestDataProvider('https://gantt-backend.svar.dev'),
[],
);