Skip to content

Commit 96f2685

Browse files
committed
FrontEnd Update
1 parent 9c49c0f commit 96f2685

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

admin_web_app/Source_webapp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fidesinnova",
33
"private": true,
4-
"version": "5.0.5",
4+
"version": "5.0.7",
55
"scripts": {
66
"dev": "vite",
77
"build": "vite build",

admin_web_app/Source_webapp/src/views/notification/Notification.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ export default function NotificationPage() {
228228
<Form>
229229
<FormContainer>
230230
<h4 className="mb-1">
231-
Send Notification to User
231+
Send Notification to a User
232232
</h4>
233233
<p>
234234
Provide the details for the
@@ -276,6 +276,7 @@ export default function NotificationPage() {
276276
</FormRow>
277277
<div className="flex mt-4 ltr:text-right">
278278
<Button
279+
size="sm"
279280
className="w-1/2 mx-auto"
280281
type="submit"
281282
disabled={isSubmitting}
@@ -317,7 +318,7 @@ export default function NotificationPage() {
317318
<Form>
318319
<FormContainer>
319320
<h4 className="mb-1">
320-
Send a Notification to All
321+
Send Notification to All
321322
Users
322323
</h4>
323324
<p>
@@ -373,6 +374,7 @@ export default function NotificationPage() {
373374
</FormRow>
374375
<div className="flex mt-4 ltr:text-right">
375376
<Button
377+
size="sm"
376378
className="w-1/2 mx-auto"
377379
type="submit"
378380
disabled={isSubmitting}
@@ -580,6 +582,7 @@ export default function NotificationPage() {
580582
</FormRow>
581583
<div className="flex mt-4 ltr:text-right">
582584
<Button
585+
size="sm"
583586
className="w-1/2 mx-auto"
584587
type="submit"
585588
disabled={

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "server_backend",
3-
"version": "5.0.5",
3+
"version": "5.2.3",
44
"description": "Fidesinnova backend server.",
55
"author": "",
66
"private": true,

web_app/Source_webapp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fidesinnova",
33
"private": true,
4-
"version": "5.1.8",
4+
"version": "5.2.0",
55
"scripts": {
66
"dev": "vite",
77
"build": "vite build",

web_app/Source_webapp/src/views/services/ServiceView/ServiceCreate.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ const createService = ({
332332
type="text"
333333
autoComplete="off"
334334
name="serviceName"
335-
placeholder="service name..."
335+
placeholder="Service Name"
336336
component={Input}
337337
/>
338338
</FormRow>
@@ -348,7 +348,7 @@ const createService = ({
348348
}: FieldProps) => (
349349
<Select<ServiceTypeOption>
350350
field={field}
351-
placeholder="select service type..."
351+
placeholder="Select Service Type"
352352
form={form}
353353
options={serviceOptions}
354354
components={{
@@ -381,7 +381,7 @@ const createService = ({
381381
type="text"
382382
autoComplete="off"
383383
name="description"
384-
placeholder="service description..."
384+
placeholder="Service Description"
385385
component={Input}
386386
/>
387387
</FormRow>

0 commit comments

Comments
 (0)