This commit is contained in:
Marta Kowalska
2026-01-15 09:02:59 +00:00
parent c57c4cdc12
commit a34aa9ad0a
7 changed files with 61 additions and 60 deletions

View File

@@ -10,7 +10,7 @@ const parseDates = (data) => {
};
export default function GanttBackend() {
const server = 'https://gantt-backend.svar.dev';
const server = 'https://master--svar-gantt-go--dev.webix.io';
const [api, setApi] = useState();
const [tasks, setTasks] = useState([]);

View File

@@ -5,7 +5,7 @@ import { Gantt, ContextMenu, Editor } from '../../src';
export default function GanttBatchProvider() {
const restProvider = useMemo(
() =>
new RestDataProvider('https://gantt-backend.svar.dev', {
new RestDataProvider('https://master--svar-gantt-go--dev.webix.io', {
batchURL: 'batch',
}),
[],

View File

@@ -4,7 +4,7 @@ import { Gantt, ContextMenu, Editor } from '../../src';
export default function GanttProvider() {
const restProvider = useMemo(
() => new RestDataProvider('https://gantt-backend.svar.dev'),
() => new RestDataProvider('https://master--svar-gantt-go--dev.webix.io'),
[],
);