chore: updated tech stack list

This commit is contained in:
Liyas Thomas
2022-11-16 09:45:55 +05:30
parent 1ecd22204d
commit 1796fae3d1
2 changed files with 4 additions and 4 deletions

View File

@@ -275,7 +275,7 @@ _Add-ons are developed and maintained under **[Hoppscotch Organization](https://
- [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript) - [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript)
- [TypeScript](https://www.typescriptlang.org) - [TypeScript](https://www.typescriptlang.org)
- [Vue](https://vuejs.org) - [Vue](https://vuejs.org)
- [Nuxt](https://nuxtjs.org) - [Vite](https://vitejs.dev)
## **Developing** ## **Developing**

View File

@@ -80,7 +80,7 @@ const cursorTooltipField = (aggregateEnvs: AggregateEnvironment[]) =>
const appendEditAction = (tooltip: HTMLElement) => { const appendEditAction = (tooltip: HTMLElement) => {
const editIcon = document.createElement("span") const editIcon = document.createElement("span")
editIcon.className = editIcon.className =
"env-icon ml-2 text-accent cursor-pointer hover:text-accentDark" "ml-2 cursor-pointer env-icon text-accent hover:text-accentDark"
editIcon.addEventListener("click", () => { editIcon.addEventListener("click", () => {
const isPersonalEnv = const isPersonalEnv =
envName === "Global" || selectedEnvType !== "TEAM_ENV" envName === "Global" || selectedEnvType !== "TEAM_ENV"
@@ -90,7 +90,7 @@ const cursorTooltipField = (aggregateEnvs: AggregateEnvironment[]) =>
variableName: parsedEnvKey, variableName: parsedEnvKey,
}) })
}) })
editIcon.innerHTML = `<i class="inline-flex -my-1 -mx-1 items-center px-1 text-base material-icons border-secondary">drive_file_rename_outline</i>` editIcon.innerHTML = `<i class="inline-flex items-center px-1 -mx-1 -my-1 text-base material-icons border-secondary">drive_file_rename_outline</i>`
tooltip.appendChild(editIcon) tooltip.appendChild(editIcon)
} }
@@ -105,7 +105,7 @@ const cursorTooltipField = (aggregateEnvs: AggregateEnvironment[]) =>
const kbd = document.createElement("kbd") const kbd = document.createElement("kbd")
const icon = document.createElement("span") const icon = document.createElement("span")
icon.innerHTML = envTypeIcon icon.innerHTML = envTypeIcon
icon.className = "env-icon mr-2" icon.className = "mr-2 env-icon"
kbd.textContent = finalEnv kbd.textContent = finalEnv
tooltipContainer.appendChild(icon) tooltipContainer.appendChild(icon)
tooltipContainer.appendChild(document.createTextNode(`${envName} `)) tooltipContainer.appendChild(document.createTextNode(`${envName} `))