removes help text from general integrations

This commit is contained in:
Godfrey M 2023-03-13 10:49:41 -07:00
parent 27a2ed5c79
commit b6d105c4f4
3 changed files with 7 additions and 25 deletions

View file

@ -127,6 +127,9 @@
"sort-packages": true, "sort-packages": true,
"optimize-autoloader": true, "optimize-autoloader": true,
"discard-changes": true, "discard-changes": true,
"process-timeout": 3000 "process-timeout": 3000,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
} }
} }

View file

@ -24,9 +24,11 @@
</div> </div>
<div class="box-body"> <div class="box-body">
<div class="col-md-12"> <div class="col-md-12">
@if($webhook_selected != 'General')
<p> <p>
{!! trans('admin/settings/general.webhook_integration_help',array('webhook_link' => $webhook_link, 'app' => $webhook_name)) !!} {!! trans('admin/settings/general.webhook_integration_help',array('webhook_link' => $webhook_link, 'app' => $webhook_name)) !!}
</p> </p>
@endif
<br> <br>
</div> </div>
@ -164,26 +166,3 @@
</div> <!-- /box --> </div> <!-- /box -->
</div> <!-- /.col-md-8--> </div> <!-- /.col-md-8-->
@push('scripts')
<script>
// function formatText (icon) {
// return $('<span><i class="fab ' + $(icon.element).data('icon') + '"></i> ' + icon.text + '</span>');
// };
//
// $('.hook_options').select2({
// width: "50%",
// templateSelection: formatText,
// templateResult: formatText
// });
// $(document).ready(function () {
// $('.webhook_options').select2();
// $('.webhook_options').on('change', function (e) {
// let data = $('#select2').select2("val");
// @this.set('webhook_option', data);
// });
// });
</script>
@endpush

View file

@ -164,7 +164,7 @@
<div class="box-body text-center"> <div class="box-body text-center">
<h5> <h5>
<a href="{{ route('settings.slack.index') }}" class="settings_button"> <a href="{{ route('settings.slack.index') }}" class="settings_button">
<i class="fa-regular fa-hashtag fa-4x" aria-hidden="true"></i> <i class="fa-solid fa-hashtag fa-4x" aria-hidden="true"></i>
<br><br> <br><br>
<span class="name">{{ trans('admin/settings/general.integrations') }}</span> <span class="name">{{ trans('admin/settings/general.integrations') }}</span>
</a> </a>