Commit 05a66a09 authored by Simon Knox's avatar Simon Knox Committed by Clement Ho

Resolve "SQL Queries are not shown from the Performance Bar in Safari"

parent 7ba35a21
...@@ -113,7 +113,7 @@ export default { ...@@ -113,7 +113,7 @@ export default {
> >
<div <div
v-if="currentRequest" v-if="currentRequest"
class="container-fluid container-limited" class="d-flex container-fluid container-limited"
> >
<div <div
id="peek-view-host" id="peek-view-host"
...@@ -179,6 +179,7 @@ export default { ...@@ -179,6 +179,7 @@ export default {
v-if="currentRequest" v-if="currentRequest"
:current-request="currentRequest" :current-request="currentRequest"
:requests="requests" :requests="requests"
class="ml-auto"
@change-current-request="changeCurrentRequest" @change-current-request="changeCurrentRequest"
/> />
</div> </div>
......
...@@ -35,10 +35,7 @@ export default { ...@@ -35,10 +35,7 @@ export default {
}; };
</script> </script>
<template> <template>
<div <div id="peek-request-selector">
id="peek-request-selector"
class="float-right"
>
<select v-model="currentRequestId"> <select v-model="currentRequestId">
<option <option
v-for="request in requests" v-for="request in requests"
......
...@@ -7,7 +7,6 @@ ...@@ -7,7 +7,6 @@
top: 0; top: 0;
width: 100%; width: 100%;
z-index: 2000; z-index: 2000;
overflow-x: hidden;
height: $performance-bar-height; height: $performance-bar-height;
background: $black; background: $black;
...@@ -82,7 +81,7 @@ ...@@ -82,7 +81,7 @@
.view { .view {
margin-right: 15px; margin-right: 15px;
float: left; flex-shrink: 0;
&:last-child { &:last-child {
margin-right: 0; margin-right: 0;
......
---
title: Fix performance bar modal visibility in Safari
merge_request:
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment