Skip to content
This repository has been archived by the owner on Oct 18, 2023. It is now read-only.

Commit

Permalink
Move import of RxJS operators.
Browse files Browse the repository at this point in the history
  • Loading branch information
cailloumajor committed Oct 4, 2021
1 parent 8245f3f commit c1600b3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 1 addition & 2 deletions web/frontend/src/composables/influx-chart.ts
Expand Up @@ -8,9 +8,8 @@ import type { VNode } from "vue"
import { computed, h, reactive, toRefs } from "@vue/composition-api"
import { from, useSubscription } from "@vueuse/rxjs"
import merge from "lodash/merge"
import { of, timer } from "rxjs"
import { catchError, map, of, switchMap, timer } from "rxjs"
import { fromFetch } from "rxjs/fetch"
import { catchError, map, switchMap } from "rxjs/operators"
import ApexChart from "vue-apexcharts"
import { VAlert, VOverlay, VProgressCircular } from "vuetify/lib"

Expand Down
3 changes: 1 addition & 2 deletions web/frontend/src/stores/influxdb.ts
@@ -1,7 +1,6 @@
import { defineStore } from "pinia"
import { of, timer } from "rxjs"
import { catchError, map, of, timer, timeout, switchMap } from "rxjs"
import { fromFetch } from "rxjs/fetch"
import { catchError, map, timeout, switchMap } from "rxjs/operators"

import { apiUrl } from "@/common"

Expand Down
7 changes: 5 additions & 2 deletions web/frontend/src/stores/opcua.ts
Expand Up @@ -8,17 +8,20 @@ import type {

import Centrifuge from "centrifuge"
import { defineStore } from "pinia"
import { concat, fromEvent, merge, of } from "rxjs"
import {
catchError,
concat,
delay,
distinctUntilChanged,
filter,
first,
fromEvent,
map,
mapTo,
merge,
of,
timeout,
} from "rxjs/operators"
} from "rxjs"

import {
LinkStatus,
Expand Down

0 comments on commit c1600b3

Please sign in to comment.