Change config name and convert back to LF...

This commit is contained in:
Aj - Thomas
2022-05-06 23:19:05 +02:00
parent 89f31dfdc4
commit 5e97dd40d6
2 changed files with 1 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ export default function SaveConfigComponent(props: any) {
const { config } = useConfig();
function onClick(e: any) {
if (config) {
fileDownload(JSON.stringify(config, null, '\t'), 'services.json');
fileDownload(JSON.stringify(config, null, '\t'), 'config.json');
}
}
return (

View File

@@ -6,7 +6,6 @@ import {
Title,
Text,
Tooltip,
TextInput,
SegmentedControl,
} from '@mantine/core';
import { useState } from 'react';