Skip to content

Commit af37aac

Browse files
fix issues
1 parent 668dc4a commit af37aac

File tree

11 files changed

+10
-84
lines changed

11 files changed

+10
-84
lines changed

Angular/src/app/app.component.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
#request-panel {
1212
min-width: 505px;
1313
height: 400px;
14-
overflow-x: hidden;
15-
overflow-y: auto;
14+
overflow: hidden auto;
1615
padding: 18px;
1716
margin-top: 40px;
1817
background-color: rgb(191 191 191 / 15%);

React/.eslintrc.js

Lines changed: 0 additions & 36 deletions
This file was deleted.

React/src/App.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
#request-panel {
1212
min-width: 505px;
1313
height: 400px;
14-
overflow-x: hidden;
15-
overflow-y: auto;
14+
overflow: hidden auto;
1615
padding: 18px;
1716
margin-top: 40px;
1817
background-color: rgb(191 191 191 / 15%);

React/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { useCallback, useState, useMemo } from 'react';
1+
import { useCallback, useState, useMemo } from 'react';
22
import './App.css';
33
import 'devextreme/dist/css/dx.material.blue.light.compact.css';
44

React/src/api/azure.custom.provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import CustomFileSystemProvider from 'devextreme/file_management/custom_provider';
22
import FileSystemItem from 'devextreme/file_management/file_system_item';
3-
import UploadInfo from 'devextreme/file_management/upload_info';
3+
import type UploadInfo from 'devextreme/file_management/upload_info';
44

55
import { AzureGateway } from './azure.gateway';
66
import { AzureFileSystem } from './azure.filesystem';

React/src/api/azure.filesystem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import FileSystemItem from 'devextreme/file_management/file_system_item';
2-
import { AccessUrls, FileEntry, AzureResponse } from './types';
2+
import type { AccessUrls, FileEntry, AzureResponse } from './types';
33
import { AzureGateway } from './azure.gateway';
44

55
export class AzureFileSystem {

React/src/api/azure.gateway.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
import {
2-
FileEntry, AccessUrls, AzureResponse, CommandParams, isUrlResponse, RequestParams, AzureObject,
1+
import type {
2+
FileEntry, AccessUrls, AzureResponse, CommandParams, RequestParams, AzureObject,
33
} from './types';
4+
import { isUrlResponse } from './types';
45

56
export class AzureGateway {
67
endpointUrl: string;

React/src/index.tsx

Lines changed: 0 additions & 19 deletions
This file was deleted.

React/src/reportWebVitals.ts

Lines changed: 0 additions & 17 deletions
This file was deleted.

Vue/src/views/HomeView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import HomeContent from '../components/HomeContent.vue';
33
</script>
44

55
<template>
6-
<HomeContent />
6+
<HomeContent/>
77
</template>
88

0 commit comments

Comments
 (0)