Compare commits

...

2 Commits

Author SHA1 Message Date
65afcac143 Merge remote-tracking branch 'gitea/feature' into feature
# Conflicts:
#	resources/views/function/edit-friend.blade.php
2023-07-08 18:02:14 +08:00
564ba06ada EditFeature:添加禁止选择的颜色
修改内容显示禁止选择内容配置

Signed-off-by: XiaoLFeng <gm@x-lf.cn>
2023-07-08 18:02:06 +08:00

View File

@ -213,8 +213,8 @@ class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:
@else
@foreach($blogColor as $blogValue)
<option value="{{ $blogValue->id }}"
@if($blogValue->id == $blog->blogSetColor)selected @endif @if($blogValue->onlyAdminUse)disabled @endif>{!!
$blogValue->comment !!}</option>
@if($blogValue->id == $blog->blogSetColor)selected @endif @if($blogValue->onlyAdminUse)disabled @endif>
{!! $blogValue->comment !!}</option>
@endforeach
@endif
</select>