From bd81a77216b214374437a83665fba0302a6b6e6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sedat=20=C3=96zt=C3=BCrk?= Date: Sun, 21 Sep 2025 01:01:15 +0300 Subject: [PATCH] =?UTF-8?q?D=C3=BCzeltme=20Button?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/public/version.json | 11 +++++++++-- ui/src/views/list/List.tsx | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ui/public/version.json b/ui/public/version.json index 459551aa..9bdcd9ea 100644 --- a/ui/public/version.json +++ b/ui/public/version.json @@ -1,9 +1,16 @@ { - "commit": "4a27d39", + "commit": "3f69cc5", "releases": [ + { + "version": "1.0.8", + "buildDate": "2025-09-21", + "changeLog": [ + "Listelere Grid ve Card görünümleri eklendi." + ] + }, { "version": "1.0.7", - "buildDate": "2025-09-19", + "buildDate": "2025-09-20", "changeLog": [ "Versiyon güncellemesi için geçiş uyarı sistemi" ] diff --git a/ui/src/views/list/List.tsx b/ui/src/views/list/List.tsx index 5096e40c..534cfe2a 100644 --- a/ui/src/views/list/List.tsx +++ b/ui/src/views/list/List.tsx @@ -2,13 +2,13 @@ import { useParams, useSearchParams } from 'react-router-dom' import { useState } from 'react' import Container from '@/components/shared/Container' import Grid from './Grid' -import { Button } from '@/components/ui/button' import { FaList, FaTh } from 'react-icons/fa' import { useStoreState } from '@/store/store' import classNames from 'classnames' import { useLocalization } from '@/utils/hooks/useLocalization' import { GridDto } from '@/proxy/form/models' import CardView from './CardView' +import { Button } from '@/components/ui' const List = () => { const params = useParams()