Skip to content

Commit 0308b12

Browse files
Merge pull request #219 from jitendra-webkul/master
Issue #202 fixed
2 parents a7a8f39 + 06fa475 commit 0308b12

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

packages/Webkul/Admin/src/Resources/views/activities/edit.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<textarea class="control" id="activity-comment" name="comment">{{ old('comment') ?: $activity->comment }}</textarea>
7373
</div>
7474

75-
<div class="form-group" :class="[errors.has('schedule_from') || errors.has('schedule_to') ? 'has-error' : '']">
75+
<div class="form-group date" :class="[errors.has('schedule_from') || errors.has('schedule_to') ? 'has-error' : '']">
7676
<label for="schedule_from" class="required">{{ __('admin::app.activities.schedule') }}</label>
7777

7878
<div class="input-group">

packages/Webkul/Admin/src/Resources/views/common/custom-attributes/edit/phone.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</select>
2222
</div>
2323

24-
<i class="icon trash-icon" v-if="emails.length > 1" @click="removePhone(contactNumber)"></i>
24+
<i class="icon trash-icon" v-if="contactNumbers.length > 1" @click="removePhone(contactNumber)"></i>
2525

2626
<span class="control-error" v-if="errors.has('{!! $formScope ?? '' !!}' + attribute['code'] + '[' + index + '][value]')">
2727
@{{ errors.first('{!! $formScope ?? '' !!}' + attribute['code'] + '[' + index + '][value]') }}

packages/Webkul/Admin/src/Resources/views/leads/view.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ class="stage"
508508
<textarea class="control" id="activity-comment" name="comment">{{ old('comment') }}</textarea>
509509
</div>
510510

511-
<div class="form-group" :class="[errors.has('activity-form.schedule_from') || errors.has('activity-form.schedule_to') ? 'has-error' : '']">
511+
<div class="form-group date" :class="[errors.has('activity-form.schedule_from') || errors.has('activity-form.schedule_to') ? 'has-error' : '']">
512512
<label for="schedule_from" class="required">{{ __('admin::app.leads.schedule') }}</label>
513513

514514
<div class="input-group">

packages/Webkul/UI/publishable/assets/css/ui.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/Webkul/UI/publishable/assets/mix-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"/js/ui.js": "/js/ui.js?id=04e2fdebe8621c6953e2",
3-
"/css/ui.css": "/css/ui.css?id=7855a0b66e35a635a196",
3+
"/css/ui.css": "/css/ui.css?id=ad7b8afe7e2ca780abcb",
44
"/images/add-icon.svg": "/images/add-icon.svg?id=9135b4e0e1c239c36981",
55
"/images/align-justify-icon.svg": "/images/align-justify-icon.svg?id=ee8d48e636b80417a884",
66
"/images/arrow-down-icon.svg": "/images/arrow-down-icon.svg?id=7b5c03f96be72c9a0bef",

packages/Webkul/UI/src/Resources/assets/sass/app.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,7 @@ h5 {
883883
pointer-events: none;
884884
position: absolute;
885885
right: 10px;
886-
top: 50%;
886+
top: 29px;
887887
margin-top: -9px;
888888
}
889889
}
@@ -995,11 +995,11 @@ h5 {
995995
> .date-container,
996996
> .datetime-container {
997997
&:not(:first-child) {
998-
padding-left: 10px;
998+
margin-left: 10px;
999999
}
10001000

10011001
&:not(:last-child) {
1002-
padding-right: 10px;
1002+
margin-right: 10px;
10031003
}
10041004
}
10051005

0 commit comments

Comments
 (0)