From 69934e1bb6754e4b7dcddd60c05640025a3dae66 Mon Sep 17 00:00:00 2001 From: Fine Date: Thu, 18 May 2023 14:18:52 +0800 Subject: [PATCH] feat: add icons --- src/assets/icons/all_inbox.svg | 4 ++-- src/assets/icons/continuous_profiling.svg | 17 +++++++++++++++++ src/views/dashboard/data.ts | 2 +- 3 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 src/assets/icons/continuous_profiling.svg diff --git a/src/assets/icons/all_inbox.svg b/src/assets/icons/all_inbox.svg index cf38fc98..07330101 100644 --- a/src/assets/icons/all_inbox.svg +++ b/src/assets/icons/all_inbox.svg @@ -12,6 +12,6 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> - - + + diff --git a/src/assets/icons/continuous_profiling.svg b/src/assets/icons/continuous_profiling.svg new file mode 100644 index 00000000..fec271e6 --- /dev/null +++ b/src/assets/icons/continuous_profiling.svg @@ -0,0 +1,17 @@ + + + + diff --git a/src/views/dashboard/data.ts b/src/views/dashboard/data.ts index 70d3a983..74263949 100644 --- a/src/views/dashboard/data.ts +++ b/src/views/dashboard/data.ts @@ -194,7 +194,7 @@ export const ServiceTools = [ { name: "merge", content: "Add Trace", id: "addTrace" }, { name: "timeline", content: "Add Trace Profiling", id: "addProfile" }, { name: "insert_chart", content: "Add eBPF Profiling", id: "addEbpf" }, - { name: "insert_chart", content: "Add Continuous Profiling", id: "addContinuousProfiling" }, + { name: "continuous_profiling", content: "Add Continuous Profiling", id: "addContinuousProfiling" }, { name: "assignment", content: "Add Log", id: "addLog" }, { name: "demand", content: "Add On Demand Log", id: "addDemandLog" }, { name: "event", content: "Add Event", id: "addEvent" },