Skip to content

[ユーザ管理] ユーザ管理>項目設定, 一覧のレイアウトが崩れるケースがある不具合(HTML有りのキャプション時)に対応 #2201

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 28, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -133,23 +133,23 @@ class="btn btn-success btn-sm text-nowrap @if (UsersColumns::isSelectColumnType(
{{-- キャプションが設定されている場合、キャプションを表示する --}}
<div class="small {{ $column->caption_color }}">
<i class="fas fa-pen" data-toggle="tooltip" title="キャプション"></i>
{!! mb_strimwidth($column->caption, 0, 60, '...', 'UTF-8') !!}
{{ mb_strimwidth($column->caption, 0, 60, '...', 'UTF-8') }}
</div>
@endif

@if ($column->place_holder)
{{-- プレースホルダが設定されている場合、プレースホルダを表示する --}}
<div class="small">
<i class="fas fa-pen-square" data-toggle="tooltip" title="プレースホルダ"></i>
{!! mb_strimwidth($column->place_holder, 0, 60, '...', 'UTF-8') !!}
{{ mb_strimwidth($column->place_holder, 0, 60, '...', 'UTF-8') }}
</div>
@endif

@if ($column->use_variable)
{{-- 変数名を使用する場合、変数名を表示する --}}
<div class="small">
<i class="fas fa-box" data-toggle="tooltip" title="変数名"></i>
{!! mb_strimwidth($column->variable_name, 0, 60, '...', 'UTF-8') !!}
{{ mb_strimwidth($column->variable_name, 0, 60, '...', 'UTF-8') }}
</div>
@endif
</td>
Expand Down