[PR #2747] [CLOSED] Patch 3 #4039

Closed
opened 2026-03-17 01:36:10 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/2747
Author: @islamzeki
Created: 10/6/2022
Status: Closed

Base: i18nHead: patch-3


📝 Commits (9)

📊 Changes

20 files changed (+299 additions, -175 deletions)

View changed files

📝 Dockerfile (+3 -1)
📝 package.json (+4 -3)
📝 packages/hoppscotch-app/assets/scss/styles.scss (+1 -0)
📝 packages/hoppscotch-app/locales/en.json (+2 -1)
📝 packages/hoppscotch-app/locales/tr.json (+4 -4)
📝 packages/hoppscotch-app/package.json (+1 -2)
📝 packages/hoppscotch-app/src/components/app/Header.vue (+13 -34)
📝 packages/hoppscotch-app/src/components/app/PaneLayout.vue (+4 -7)
📝 packages/hoppscotch-app/src/components/app/Shortcuts.vue (+2 -2)
📝 packages/hoppscotch-app/src/components/button/Primary.vue (+2 -2)
📝 packages/hoppscotch-app/src/components/button/Secondary.vue (+2 -2)
📝 packages/hoppscotch-app/src/components/collections/teams/Collection.vue (+18 -16)
📝 packages/hoppscotch-app/src/components/collections/teams/Folder.vue (+18 -16)
📝 packages/hoppscotch-app/src/components/firebase/Login.vue (+16 -60)
📝 packages/hoppscotch-app/src/components/profile/Picture.vue (+8 -4)
📝 packages/hoppscotch-app/src/components/teams/Invite.vue (+3 -2)
📝 packages/hoppscotch-app/src/helpers/fb/auth.ts (+19 -8)
📝 packages/hoppscotch-app/src/layouts/default.vue (+41 -9)
📝 packages/hoppscotch-app/src/pages/profile.vue (+3 -1)
📝 pnpm-lock.yaml (+135 -1)

📄 Description

Closes #

Description

Checks

  • My pull request adheres to the code style of this project
  • My code requires changes to the documentation
  • I have updated the documentation as required
  • All the tests have passed

Additional Information


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hoppscotch/hoppscotch/pull/2747 **Author:** [@islamzeki](https://github.com/islamzeki) **Created:** 10/6/2022 **Status:** ❌ Closed **Base:** `i18n` ← **Head:** `patch-3` --- ### 📝 Commits (9) - [`3c17a14`](https://github.com/hoppscotch/hoppscotch/commit/3c17a14bd33badd7ab3aa539da2e7102cce2a2e0) fix: find linked account from authentication error and link it (#2662) - [`f8e9563`](https://github.com/hoppscotch/hoppscotch/commit/f8e9563392df918615e6900eb892132006ef6c71) fix: resolved #2736 - [`f5a0c3c`](https://github.com/hoppscotch/hoppscotch/commit/f5a0c3cfcafecc86948a028021409924b9a9ae9f) chore: minor ui improvements - [`dc80cc8`](https://github.com/hoppscotch/hoppscotch/commit/dc80cc80e6e9c02c41a0754dfa7868f7f102964a) build: v3.0.1 - [`604ef4d`](https://github.com/hoppscotch/hoppscotch/commit/604ef4d004365de7f8c565c35f189497a158d35b) fix: resolved #2740 - [`59ee4ba`](https://github.com/hoppscotch/hoppscotch/commit/59ee4babeb24151905b72aa8e7f95e4ef8397333) fix: fix ref access when using v-for on Invite.vue (#2744) - [`568c05b`](https://github.com/hoppscotch/hoppscotch/commit/568c05b4b0bd1aff091dfee2d5aa5c6652cb04cd) fix: fix type error when generating profile picture initials (#2742) - [`bfff08f`](https://github.com/hoppscotch/hoppscotch/commit/bfff08fd87d5a689eb84d246406fb826c456c144) Update tr.json - [`f2e9afb`](https://github.com/hoppscotch/hoppscotch/commit/f2e9afbca13fb3de55be9ece8ddc2966dec1d9bc) Merge branch 'i18n' into patch-3 ### 📊 Changes **20 files changed** (+299 additions, -175 deletions) <details> <summary>View changed files</summary> 📝 `Dockerfile` (+3 -1) 📝 `package.json` (+4 -3) 📝 `packages/hoppscotch-app/assets/scss/styles.scss` (+1 -0) 📝 `packages/hoppscotch-app/locales/en.json` (+2 -1) 📝 `packages/hoppscotch-app/locales/tr.json` (+4 -4) 📝 `packages/hoppscotch-app/package.json` (+1 -2) 📝 `packages/hoppscotch-app/src/components/app/Header.vue` (+13 -34) 📝 `packages/hoppscotch-app/src/components/app/PaneLayout.vue` (+4 -7) 📝 `packages/hoppscotch-app/src/components/app/Shortcuts.vue` (+2 -2) 📝 `packages/hoppscotch-app/src/components/button/Primary.vue` (+2 -2) 📝 `packages/hoppscotch-app/src/components/button/Secondary.vue` (+2 -2) 📝 `packages/hoppscotch-app/src/components/collections/teams/Collection.vue` (+18 -16) 📝 `packages/hoppscotch-app/src/components/collections/teams/Folder.vue` (+18 -16) 📝 `packages/hoppscotch-app/src/components/firebase/Login.vue` (+16 -60) 📝 `packages/hoppscotch-app/src/components/profile/Picture.vue` (+8 -4) 📝 `packages/hoppscotch-app/src/components/teams/Invite.vue` (+3 -2) 📝 `packages/hoppscotch-app/src/helpers/fb/auth.ts` (+19 -8) 📝 `packages/hoppscotch-app/src/layouts/default.vue` (+41 -9) 📝 `packages/hoppscotch-app/src/pages/profile.vue` (+3 -1) 📝 `pnpm-lock.yaml` (+135 -1) </details> ### 📄 Description <!-- Thanks for creating this pull request 🤗 Please make sure that the pull request is limited to one type (docs, feature, etc.) and keep it as small as possible. You can open multiple prs instead of opening a huge one. --> <!-- If this pull request closes an issue, please mention the issue number below --> Closes # <!-- Issue # here --> ### Description <!-- Add a brief description of the pull request --> <!-- You can also choose to add a list of changes and if they have been completed or not by using the markdown to-do list syntax - [ ] Not Completed - [x] Completed --> ### Checks <!-- Make sure your pull request passes the CI checks and do check the following fields as needed - --> - [ ] My pull request adheres to the code style of this project - [ ] My code requires changes to the documentation - [ ] I have updated the documentation as required - [ ] All the tests have passed ### Additional Information <!-- Any additional information like breaking changes, dependencies added, screenshots, comparisons between new and old behaviour, etc. --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 01:36:10 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hoppscotch#4039
No description provided.