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(); const { config } = useConfig();
function onClick(e: any) { function onClick(e: any) {
if (config) { if (config) {
fileDownload(JSON.stringify(config, null, '\t'), 'services.json'); fileDownload(JSON.stringify(config, null, '\t'), 'config.json');
} }
} }
return ( return (

View File

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