Skip to content

Commit 054508a

Browse files
committed
update openapi and firebase datasource icon
1 parent 3006b8f commit 054508a

File tree

5 files changed

+17
-2
lines changed

5 files changed

+17
-2
lines changed

server/node-service/src/plugins/firebase/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ import { runFirebasePlugin } from "./run";
55

66
const firebasePlugin: DataSourcePlugin<ActionDataType, DataSourceDataType> = {
77
id: "firebase",
8+
icon: "firebase.svg",
89
name: "Firebase",
910
category: "api",
1011
queryConfig,
1112
dataSourceConfig,
1213
run: function (actionData, dataSourceConfig): Promise<any> {
13-
return runFirebasePlugin(actionData, dataSourceConfig)
14+
return runFirebasePlugin(actionData, dataSourceConfig);
1415
},
1516
};
1617

server/node-service/src/plugins/openApi/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export async function runOpenApi(
104104
const openApiPlugin: DataSourcePlugin<ActionDataType, DataSourceDataType> = {
105105
id: "openApi",
106106
name: "OpenApi",
107-
icon: "swagger.png",
107+
icon: "swagger.svg",
108108
category: "api",
109109
dataSourceConfig: {
110110
...dataSourceConfig,
Lines changed: 1 addition & 0 deletions
Loading
Binary file not shown.
Lines changed: 13 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)