Skip to content

Commit 0c36a3b

Browse files
bert-wdriesvintsedvinaskrucastaylorotwellmmachatschek
authored
[6.x] Merge 5.x into master (#1555)
* Update CHANGELOG.md * Update branch alias * Do not override all options provided by connection (#960) * [6.x] Update to bootstrap 5.1 and drop jQuery (#1119) * Update bootstrap and remove jQuery and popper.js dependencies Popper.js is needed for tooltips, using the browser native title attribute removes the need to keep this * Update utility classes https://getbootstrap.com/docs/5.1/migration/#utilities * Fix badge color classes https://getbootstrap.com/docs/5.1/migration/#badges * Remove text decoration of anchor tags https://getbootstrap.com/docs/5.1/migration/#content-reboot-etc * Fix data-toggle attribute https://getbootstrap.com/docs/5.1/migration/#javascript * Remove text-decoration of route-link elements https://getbootstrap.com/docs/5.1/migration/#content-reboot-etc * Remove new border styling under thead * Fix vue-json-pretty output with overflowing text * Apply fixes for updated vue-json-pretty css laravel/telescope#1049 * compile * Redirects to batches page when batch not found (#1383) * fix: redirects to batches page when batch not found * Update BatchesController.php --------- Co-authored-by: Taylor Otwell <taylor@laravel.com> * Apply fixes from StyleCI * Compile Assets --------- Co-authored-by: Dries Vints <dries@vints.io> Co-authored-by: Edvinas Kručas <edv.krucas@gmail.com> Co-authored-by: Taylor Otwell <taylor@laravel.com> Co-authored-by: Markus Machatschek <mmachatschek@users.noreply.github.com> Co-authored-by: Irakli Shengelia <59525444+irakliShengelia@users.noreply.github.com> Co-authored-by: StyleCI Bot <bot@styleci.io> Co-authored-by: bert-w <10498595+bert-w@users.noreply.github.com>
1 parent ef1d638 commit 0c36a3b

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
},
5151
"extra": {
5252
"branch-alias": {
53-
"dev-master": "5.x-dev"
53+
"dev-master": "6.x-dev"
5454
},
5555
"laravel": {
5656
"providers": [

dist/app.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/js/components/Stacktrace.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</tr>
3030

3131
<tr v-if="! showAll">
32-
<td class="card-bg-secondary"><a href="*" v-on:click.prevent="showAll = true">Show All</a></td>
32+
<td class="card-bg-secondary"><a href="*" class="text-decoration-none" v-on:click.prevent="showAll = true">Show All</a></td>
3333
</tr>
3434
</tbody>
3535
</table>

resources/js/screens/metrics/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818

1919
<ul class="nav nav-pills card-bg-secondary">
2020
<li class="nav-item">
21-
<router-link class="nav-link" active-class="active" :to="{ name: 'metrics-jobs'}" href="#">
21+
<router-link class="nav-link text-decoration-none" active-class="active" :to="{ name: 'metrics-jobs'}" href="#">
2222
Jobs
2323
</router-link>
2424
</li>
2525

2626
<li class="nav-item">
27-
<router-link class="nav-link" active-class="active" :to="{ name: 'metrics-queues'}" href="#">
27+
<router-link class="nav-link text-decoration-none" active-class="active" :to="{ name: 'metrics-queues'}" href="#">
2828
Queues
2929
</router-link>
3030
</li>

resources/js/screens/metrics/jobs.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767

6868
<tr v-for="job in jobs" :key="job">
6969
<td>
70-
<router-link :to="{ name: 'metrics-preview', params: { type: 'jobs', slug: job }}">
70+
<router-link class="text-decoration-none" :to="{ name: 'metrics-preview', params: { type: 'jobs', slug: job }}">
7171
{{ job }}
7272
</router-link>
7373
</td>

resources/js/screens/metrics/queues.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767

6868
<tr v-for="queue in queues" :key="queue">
6969
<td>
70-
<router-link :to="{ name: 'metrics-preview', params: { type: 'queues', slug: queue }}">
70+
<router-link class="text-decoration-none" :to="{ name: 'metrics-preview', params: { type: 'queues', slug: queue }}">
7171
{{ queue }}
7272
</router-link>
7373
</td>

resources/js/screens/monitoring/tag.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111

1212
<ul class="nav nav-pills card-bg-secondary">
1313
<li class="nav-item">
14-
<router-link class="nav-link" active-class="active" :to="{ name: 'monitoring-jobs', params: { tag:$route.params.tag }}" href="#">
14+
<router-link class="nav-link text-decoration-none" active-class="active" :to="{ name: 'monitoring-jobs', params: { tag:$route.params.tag }}" href="#">
1515
Recent Jobs
1616
</router-link>
1717
</li>
1818

1919
<li class="nav-item">
20-
<router-link class="nav-link" active-class="active" :to="{ name: 'monitoring-failed', params: { tag:$route.params.tag }}" href="#">
20+
<router-link class="nav-link text-decoration-none" active-class="active" :to="{ name: 'monitoring-failed', params: { tag:$route.params.tag }}" href="#">
2121
Failed Jobs
2222
</router-link>
2323
</li>

0 commit comments

Comments
 (0)