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

Feat: Base Table #5

Merged
merged 4 commits into from
Feb 9, 2024
Merged

Feat: Base Table #5

merged 4 commits into from
Feb 9, 2024

Conversation

mariaozamiz
Copy link
Contributor

📌 References

📝 Implementation

Basic table was created with mocked data.

📹 Screenshots/Screen capture

Captura de pantalla 2024-02-07 a las 12 55 57

🔥 Notes to the tester

The table is displayed on the dashboard page located at the URL #/dashboard.

@mariaozamiz mariaozamiz changed the base branch from master to development February 7, 2024 12:01
Copy link
Contributor

@eperedo eperedo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good, thanks @mariaozamiz. Just as a note you can return custom components for a column:

    {
        name: "progress",
        text: i18n.t("Progress"),
        sortable: false,
        getValue: (row) => {
            return <ProgressStatus value={row.progress} />;
        },
    },

This way we can achieve showing custom content for an specific column and doing inline-edit for issues.

Copy link
Contributor

@Ramon-Jimenez Ramon-Jimenez left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thx @mariaozamiz , app taking some shape!

@Ramon-Jimenez Ramon-Jimenez merged commit 8aa549b into development Feb 9, 2024
1 check passed
@Ramon-Jimenez Ramon-Jimenez deleted the feat/base-table branch February 9, 2024 11:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants