mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-14 09:00:50 +00:00
still on conflict resolve, removed unused vairiables
This commit is contained in:
parent
f18e5c7149
commit
05ca4ccb13
@ -45,7 +45,7 @@ function scrollStop(callback: { (): void; (): void }, refresh = 66) {
|
||||
let scrollListener: number;
|
||||
window.addEventListener(
|
||||
"scroll",
|
||||
function (event) {
|
||||
function () {
|
||||
isScrolling = true;
|
||||
window.clearTimeout(scrollListener);
|
||||
scrollListener = window.setTimeout(callback, refresh);
|
||||
@ -98,7 +98,7 @@ export default defineComponent({
|
||||
}
|
||||
});
|
||||
});
|
||||
document.querySelectorAll(".item").forEach((element, index) => {
|
||||
document.querySelectorAll(".item").forEach((element) => {
|
||||
arrayOfItems.value.push(element);
|
||||
observer.observe(element);
|
||||
});
|
||||
|
@ -37,7 +37,7 @@ limitations under the License. -->
|
||||
</el-select>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
import { ref, watch, onMounted } from "vue";
|
||||
import { ref, watch } from "vue";
|
||||
import type { PropType } from "vue";
|
||||
|
||||
interface Option {
|
||||
@ -95,6 +95,7 @@ watch(
|
||||
.el-input__inner {
|
||||
border-radius: unset !important;
|
||||
}
|
||||
|
||||
.el-input.el-input--small.el-input--suffix {
|
||||
height: 18px !important;
|
||||
}
|
||||
|
@ -132,7 +132,7 @@ limitations under the License. -->
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
import { ref, reactive, watch, computed } from "vue";
|
||||
import { ref, reactive, watch } from "vue";
|
||||
import { useI18n } from "vue-i18n";
|
||||
import { Option } from "@/types/app";
|
||||
import { Status } from "../../data";
|
||||
|
Loading…
Reference in New Issue
Block a user