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

This commit is contained in:
Simon Knox 2018-06-28 21:56:31 +00:00 committed by Clement Ho
parent 7ba35a21f9
commit 05a66a09e8
4 changed files with 9 additions and 7 deletions

View File

@ -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 {
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>

View File

@ -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"

View File

@ -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 @@
.view { .view {
margin-right: 15px; margin-right: 15px;
float: left; flex-shrink: 0;
&:last-child { &:last-child {
margin-right: 0; margin-right: 0;

View File

@ -0,0 +1,5 @@
---
title: Fix performance bar modal visibility in Safari
merge_request:
author:
type: fixed