Skip to content

Commit

Permalink
Issue krayin#1663 fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
suraj-webkul committed Sep 30, 2024
1 parent e1ec37c commit 9a95f37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class="primary-button"
<div class="flex gap-2.5 max-xl:flex-wrap">
<!-- Left sub Component -->
<div class="flex flex-1 flex-col gap-2 max-xl:flex-auto">
<div class="box-shadow rounded-lg border border-gray-200 bg-white p-4 dark:bg-gray-900 dark:border-gray-800">
<div class="box-shadow rounded-lg border border-gray-200 bg-white p-4 dark:border-gray-800 dark:bg-gray-900">
<p class="mb-4 text-base font-semibold text-gray-800 dark:text-white">
@lang('admin::app.settings.attributes.create.labels')
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class="primary-button"
{!! view_render_event('admin.catalog.attributes.edit.card.label.before', ['attribute' => $attribute]) !!}
<div class="flex flex-1 flex-col gap-2 max-xl:flex-auto">
<div class="box-shadow rounded-lg border border-gray-200 bg-white p-4 dark:bg-gray-900 dark:border-gray-800">
<div class="box-shadow rounded-lg border border-gray-200 bg-white p-4 dark:border-gray-800 dark:bg-gray-900">
<p class="mb-4 text-base font-semibold text-gray-800 dark:text-white">
@lang('admin::app.settings.attributes.edit.labels')
</p>
Expand Down Expand Up @@ -449,7 +449,7 @@ class="cursor-not-allowed"
disabled="disabled"
>
<!-- Here! All Needed types are defined -->
@foreach(['number', 'email', 'decimal', 'url'] as $type)
@foreach(['numeric', 'email', 'decimal', 'url'] as $type)
<option value="{{ $type }}" {{ $attribute->validation == $type ? 'selected' : '' }}>
@lang('admin::app.settings.attributes.edit.' . $type)
</option>
Expand Down

0 comments on commit 9a95f37

Please sign in to comment.