diff --git a/src/views/dashboard/related/profile/components/data.ts b/src/views/dashboard/related/profile/components/data.ts index 042de1c3..16bd5e69 100644 --- a/src/views/dashboard/related/profile/components/data.ts +++ b/src/views/dashboard/related/profile/components/data.ts @@ -14,14 +14,14 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -export const ProfileDataMode = [ +export const ProfileDataMode: any[] = [ { label: "Include Children", value: "include" }, { label: "Exclude Children", value: "exclude" }, -] as const; -export const ProfileDisplayMode = [ +]; +export const ProfileDisplayMode: any[] = [ { label: "Tree Graph", value: "tree" }, { label: "Flame Graph", value: "flame" }, -] as const; +]; export const NewTaskField = { service: { key: "", label: "None" }, monitorTime: { key: "0", label: "monitor now" },