Change group order naming and icon
Build and Push Lunchtime Images (Kaniko) / build-and-push (push) Successful in 1m59s

This commit is contained in:
Simon Gruber
2026-03-31 11:01:42 +02:00
parent a155294aad
commit 0b437a2314
3 changed files with 11 additions and 5 deletions
+6
View File
@@ -0,0 +1,6 @@
{
"name": "lunchtime-web",
"lockfileVersion": 3,
"requires": true,
"packages": {}
}
+2 -2
View File
@@ -369,7 +369,7 @@ export default function CreateOrderView() {
return (
<>
<Card
title="Create Order"
title="Create Group Order"
extra={
<CreateOrderHeaderActions
importFileInputRef={importFileInputRef}
@@ -471,7 +471,7 @@ export default function CreateOrderView() {
icon={<PlusCircleOutlined />}
loading={loading}
>
Create order
Create group order
</Button>
</Tooltip>
</Space>
+3 -3
View File
@@ -1,5 +1,5 @@
import React, { useCallback, useState } from "react";
import { PlusOutlined } from "@ant-design/icons";
import { PlusOutlined, UsergroupAddOutlined } from "@ant-design/icons";
import {
Button,
Card,
@@ -66,10 +66,10 @@ export default function HomeView() {
extra={
<Button
type="primary"
icon={<PlusOutlined />}
icon={<UsergroupAddOutlined />}
onClick={() => navigateTo("/create")}
>
Create Order
Create Group Order
</Button>
}
>