Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #1445

Merged
merged 28 commits into from
Oct 25, 2023
Merged

Develop #1445

Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f14e77b
implement secret manager popup
bofeiw Jun 26, 2023
a0c59e8
remove console logs
bofeiw Jun 26, 2023
31296ef
tablename first click error fixed
AnushDeokar Sep 13, 2023
e419480
Create a `Table Settings` section.
nithinrdy Sep 21, 2023
540373d
Create atom to fetch `defaultTableSettings` from.
nithinrdy Sep 21, 2023
03bbce2
Remove stray console.log and better variable naming
nithinrdy Sep 21, 2023
6e21feb
Group like imports
nithinrdy Sep 21, 2023
d3e89e6
feat: added tooltip to buttons
janvi01 Oct 2, 2023
204ed46
fix: added mui tooltip component
janvi01 Oct 2, 2023
9f52e09
Add Field Key input field to CSV import step 1, next to Column Select
nithinrdy Oct 3, 2023
8984f39
Disable next if fieldKeys are empty strings
nithinrdy Oct 3, 2023
c0b0488
Move save pop-ups out of the way, to the corner
nithinrdy Oct 4, 2023
65ba997
Merge pull request #1419 from nithinrdy/allow-for-disabling-save-popu…
shamsmosowi Oct 6, 2023
6850315
Merge pull request #1431 from nithinrdy/ability-to-edit-fieldKeys-whe…
shamsmosowi Oct 11, 2023
4ed7a89
add buildship authenticated trigger
bofeiw Oct 13, 2023
fe16570
fix buildship typo
bofeiw Oct 17, 2023
1646e99
add prefilled values for buildship extension
bofeiw Oct 18, 2023
90f2136
Bump tinymce from 5.10.7 to 5.10.8
dependabot[bot] Oct 19, 2023
80a4080
Retrieve clipboard data from the event instead
nithinrdy Oct 22, 2023
b30395f
update buildship trigger body config
bofeiw Oct 22, 2023
a249b3d
update buildship trigger context type
bofeiw Oct 22, 2023
7bedf8b
Add info snackbar for Firefox users
nithinrdy Oct 23, 2023
b85ec59
Merge pull request #1444 from nithinrdy/allow-for-pasting-in-firefox
shamsmosowi Oct 24, 2023
29f9e47
Merge pull request #1439 from rowyio/dependabot/npm_and_yarn/tinymce-…
shamsmosowi Oct 24, 2023
c65ada7
Merge pull request #1437 from rowyio/feat/buildship-authenticated-ext…
shamsmosowi Oct 24, 2023
3638cd2
Merge pull request #1322 from rowyio/feat/secret-management-popup
shamsmosowi Oct 25, 2023
093183e
Merge pull request #1412 from AnushDeokar/fix/tablename-textbox-ui-er…
shamsmosowi Oct 25, 2023
fd8df49
Merge pull request #1430 from janvi01/BtnTooltips
shamsmosowi Oct 25, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Group like imports
  • Loading branch information
nithinrdy committed Sep 21, 2023
commit 6e21feba0d45f160734139c434b190801294428e
2 changes: 1 addition & 1 deletion src/pages/Settings/UserSettingsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import SettingsSkeleton from "@src/components/Settings/SettingsSkeleton";
import SettingsSection from "@src/components/Settings/SettingsSection";
import Account from "@src/components/Settings/UserSettings/Account";
import Theme from "@src/components/Settings/UserSettings/Theme";
import TableSettings from "@src/components/Settings/UserSettings/TableSettings";
import Personalization from "@src/components/Settings/UserSettings/Personalization";

import {
Expand All @@ -19,7 +20,6 @@ import {
} from "@src/atoms/projectScope";
import { useScrollToHash } from "@src/hooks/useScrollToHash";
import { UserSettings } from "@src/types/settings";
import TableSettings from "@src/components/Settings/UserSettings/TableSettings";

export interface IUserSettingsChildProps {
settings: UserSettings;
Expand Down