Kaynağa Gözat

Merge pull request #14259 from grafana/14237-prevent-table-crash

change obj order when merging so that correct format is being used
David 7 yıl önce
ebeveyn
işleme
fab2597650
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      public/app/features/explore/Explore.tsx

+ 1 - 1
public/app/features/explore/Explore.tsx

@@ -589,8 +589,8 @@ export class Explore extends React.PureComponent<ExploreProps, ExploreState> {
 
 
     const configuredQueries = [
     const configuredQueries = [
       {
       {
-        ...queryOptions,
         ...query,
         ...query,
+        ...queryOptions,
       },
       },
     ];
     ];