diff --git a/data/constants.ts b/data/constants.ts index 6c0bbd8548f..dfbcd4c767c 100644 --- a/data/constants.ts +++ b/data/constants.ts @@ -1,2 +1,2 @@ export const REPO_URL = 'ajnart/homarr'; -export const CURRENT_VERSION = 'v0.9.1'; +export const CURRENT_VERSION = 'v0.9.2'; diff --git a/package.json b/package.json index d98b109d2ca..f492e8ee80f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "homarr", - "version": "0.9.1", + "version": "0.9.2", "description": "Homarr - A homepage for your server.", "license": "MIT", "repository": { diff --git a/src/components/AppShelf/AddAppShelfItem.tsx b/src/components/AppShelf/AddAppShelfItem.tsx index 135224a2700..9cfc402ba9a 100644 --- a/src/components/AppShelf/AddAppShelfItem.tsx +++ b/src/components/AppShelf/AddAppShelfItem.tsx @@ -172,6 +172,7 @@ export function AddAppShelfItemForm(props: { setOpened: (b: boolean) => void } & onSubmit={form.onSubmit(() => { const newForm = { ...form.values }; if (newForm.newTab === true) newForm.newTab = undefined; + if (newForm.openedUrl === '') newForm.openedUrl = undefined; if (newForm.category === null) newForm.category = undefined; if (newForm.status.length === 1 && newForm.status[0] === '200') { delete newForm.status; diff --git a/src/components/AppShelf/AppShelfItem.tsx b/src/components/AppShelf/AppShelfItem.tsx index 9e12f6ae312..0c643905573 100644 --- a/src/components/AppShelf/AppShelfItem.tsx +++ b/src/components/AppShelf/AppShelfItem.tsx @@ -6,12 +6,12 @@ import { Center, createStyles, useMantineColorScheme, + Image, } from '@mantine/core'; import { motion } from 'framer-motion'; import { useState } from 'react'; import { useSortable } from '@dnd-kit/sortable'; import { CSS } from '@dnd-kit/utilities'; -import Image from 'next/image'; import { serviceItem } from '../../tools/types'; import PingComponent from '../../modules/ping/PingModule'; import AppShelfMenu from './AppShelfMenu'; @@ -125,13 +125,11 @@ export function AppShelfItem(props: any) { target={service.newTab === false ? '_top' : '_blank'} > diff --git a/src/modules/dashdot/DashdotModule.tsx b/src/modules/dashdot/DashdotModule.tsx index 9930748685a..8178efead33 100644 --- a/src/modules/dashdot/DashdotModule.tsx +++ b/src/modules/dashdot/DashdotModule.tsx @@ -1,4 +1,4 @@ -import { createStyles, useMantineColorScheme, useMantineTheme } from '@mantine/core'; +import { createStyles, Stack, Title, useMantineColorScheme, useMantineTheme } from '@mantine/core'; import { IconCalendar as CalendarIcon } from '@tabler/icons'; import axios from 'axios'; import { useEffect, useState } from 'react'; @@ -214,30 +214,35 @@ export function DashdotComponent() { {graphs.map((graph) => ( -