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

fix(portals-admin): adding report date #16384

Merged
merged 15 commits into from
Oct 15, 2024
Merged

fix(portals-admin): adding report date #16384

merged 15 commits into from
Oct 15, 2024

Conversation

albinagu
Copy link
Member

@albinagu albinagu commented Oct 14, 2024

Checklist:

  • I have performed a self-review of my own code
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • Formatting passes locally with my changes
  • I have rebased against main before asking for a review

Summary by CodeRabbit

  • New Features
    • Added a new section in the PDF document to display the current date and time, formatted as "Dagsetning: dd.MM.yyyy HH:mm" for each report entry.
    • Expanded localization support with new messages for parliamentary signature collection.
    • Enhanced user feedback for signature upload attempts with success and error notifications.
    • Updated navigation descriptions for clarity regarding company signature collections.
    • Improved tooltip and alert messages for better contextual information based on user roles.

@albinagu albinagu requested a review from a team as a code owner October 14, 2024 14:10
@albinagu albinagu added the automerge Merge this PR as soon as all checks pass label Oct 14, 2024
Copy link
Contributor

coderabbitai bot commented Oct 14, 2024

Walkthrough

The changes in this pull request involve several updates across various components related to the signature collection feature. Notably, a date display feature is added to the MyPdfDocument component, which now shows the current date and time formatted as 'dd.MM.yyyy HH:mm'. Additionally, new localization messages are introduced, and existing ones are updated to enhance clarity and context. The navigation structure and user feedback mechanisms in the PaperSignees component are also modified to improve user experience.

Changes

File Change Summary
libs/portals/admin/signature-collection/src/screens-parliamentary/DownloadReports/MyPdfDocument/index.tsx Added import for format from date-fns and included a new section to display the current date and time.
libs/service-portal/core/src/lib/messages.ts Added new message signatureCollectionParliamentaryListsCompany for localization.
libs/service-portal/signature-collection/src/lib/messages.ts Updated actorNoAccessDescription message and added supervisorsInfo message for localization.
libs/service-portal/signature-collection/src/lib/navigation.ts Updated description in companySignatureCollectionNavigation to be more specific.
libs/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/ViewList/Signees/PaperSignees.tsx Updated onCompleted callback to provide success/error feedback for uploadPaperSignature mutation.
libs/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/ViewList/index.tsx Changed label from "Co-Owners" to "Supervisors".
libs/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/index.tsx Updated tooltip text for "supervisors" header to use localized message.
libs/service-portal/signature-collection/src/screens/shared/SigneeView/index.tsx Modified message prop for AlertMessage to use localized message instead of static default.

Possibly related PRs

Suggested reviewers

  • kksteini

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (1)
libs/portals/admin/signature-collection/src/screens-parliamentary/DownloadReports/MyPdfDocument/index.tsx (1)

34-37: LGTM: Date display added successfully

The new date display section is well-integrated and uses the format function correctly. It maintains the component's reusability and adheres to TypeScript usage.

Consider extracting the date format string to a constant for easier maintenance:

const DATE_FORMAT = 'dd.MM.yyyy HH:mm';
// ...
<Text style={styles.text}>
  {format(new Date(), DATE_FORMAT)}
</Text>

This change would improve maintainability if the date format needs to be updated in the future.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between ef14e1c and 88a5891.

📒 Files selected for processing (1)
  • libs/portals/admin/signature-collection/src/screens-parliamentary/DownloadReports/MyPdfDocument/index.tsx (2 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
libs/portals/admin/signature-collection/src/screens-parliamentary/DownloadReports/MyPdfDocument/index.tsx (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
🔇 Additional comments (2)
libs/portals/admin/signature-collection/src/screens-parliamentary/DownloadReports/MyPdfDocument/index.tsx (2)

13-13: LGTM: Efficient import for date formatting

The import of the format function from date-fns/format is a good practice. It aligns with effective tree-shaking by importing only the necessary function, which can help reduce bundle size.


Line range hint 1-37: Adherence to coding guidelines confirmed

The changes in this file comply with the coding guidelines for libs/**/*:

  1. The component remains reusable across different NextJS apps.
  2. TypeScript is used for defining props (SignatureCollectionAreaSummaryReport).
  3. The new import (format from date-fns/format) supports effective tree-shaking and bundling practices.

@albinagu albinagu requested a review from a team as a code owner October 14, 2024 15:25
Copy link

codecov bot commented Oct 14, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 36.75%. Comparing base (83b076f) to head (f8b0343).
Report is 1 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main   #16384      +/-   ##
==========================================
- Coverage   36.75%   36.75%   -0.01%     
==========================================
  Files        6807     6807              
  Lines      140972   140972              
  Branches    40145    40145              
==========================================
- Hits        51811    51810       -1     
- Misses      89161    89162       +1     
Flag Coverage Δ
air-discount-scheme-backend 54.06% <ø> (ø)
air-discount-scheme-web 0.00% <ø> (ø)
api 3.37% <ø> (ø)
api-domains-air-discount-scheme 36.93% <ø> (ø)
api-domains-assets 26.71% <ø> (ø)
api-domains-auth-admin 48.48% <ø> (ø)
api-domains-communications 39.91% <ø> (ø)
api-domains-criminal-record 48.00% <ø> (ø)
api-domains-driving-license 44.40% <ø> (ø)
api-domains-education 31.51% <ø> (ø)
api-domains-health-insurance 34.77% <ø> (ø)
api-domains-mortgage-certificate 34.95% <ø> (ø)
api-domains-payment-schedule 41.16% <ø> (ø)
application-api-files 58.02% <ø> (ø)
application-core 71.85% <ø> (+0.32%) ⬆️
application-system-api 41.42% <ø> (ø)
application-template-api-modules 27.89% <ø> (+0.01%) ⬆️
application-templates-accident-notification 29.29% <ø> (ø)
application-templates-car-recycling 3.12% <ø> (ø)
application-templates-criminal-record 26.35% <ø> (ø)
application-templates-driving-license 18.29% <ø> (ø)
application-templates-estate 12.31% <ø> (ø)
application-templates-example-payment 25.14% <ø> (ø)
application-templates-financial-aid 14.27% <ø> (ø)
application-templates-general-petition 23.43% <ø> (ø)
application-templates-inheritance-report 6.43% <ø> (ø)
application-templates-marriage-conditions 15.09% <ø> (ø)
application-templates-mortgage-certificate 43.78% <ø> (ø)
application-templates-parental-leave 29.97% <ø> (ø)
application-types 6.69% <ø> (ø)
application-ui-components 1.28% <ø> (ø)
application-ui-shell 21.35% <ø> (ø)
clients-charge-fjs-v2 24.11% <ø> (ø)
clients-driving-license 40.67% <ø> (ø)
clients-driving-license-book 43.80% <ø> (ø)
clients-financial-statements-inao 49.32% <ø> (ø)
clients-license-client 1.83% <ø> (ø)
clients-regulations 42.80% <ø> (ø)
clients-rsk-company-registry 29.76% <ø> (ø)
clients-rsk-personal-tax-return 38.00% <ø> (ø)
clients-smartsolutions 12.77% <ø> (ø)
clients-syslumenn 49.44% <ø> (ø)
cms 0.43% <ø> (ø)
cms-translations 39.04% <ø> (ø)
dokobit-signing 63.38% <ø> (ø)
download-service 44.21% <ø> (ø)
email-service 61.13% <ø> (ø)
feature-flags 91.11% <ø> (ø)
file-storage 53.71% <ø> (ø)
financial-aid-backend 56.40% <ø> (ø)
judicial-system-api 18.39% <ø> (ø)
judicial-system-audit-trail 69.35% <ø> (ø)
judicial-system-backend 55.19% <ø> (ø)
judicial-system-message 67.24% <ø> (ø)
judicial-system-message-handler 48.35% <ø> (ø)
judicial-system-scheduler 69.54% <ø> (ø)
license-api 42.59% <ø> (-0.16%) ⬇️
nest-config 78.44% <ø> (ø)
nest-feature-flags 50.89% <ø> (-0.64%) ⬇️
nova-sms 62.74% <ø> (ø)
portals-admin-regulations-admin 1.85% <ø> (ø)
portals-core 16.15% <ø> (ø)
services-auth-admin-api 51.84% <ø> (ø)
services-auth-delegation-api 57.39% <ø> (ø)
services-auth-ids-api 51.43% <ø> (-0.01%) ⬇️
services-auth-personal-representative 45.16% <ø> (ø)
services-auth-personal-representative-public 41.28% <ø> (+0.01%) ⬆️
services-auth-public-api 48.92% <ø> (ø)
services-endorsements-api 54.19% <ø> (ø)
services-sessions 65.33% <ø> (-0.05%) ⬇️
services-university-gateway 48.40% <ø> (+0.08%) ⬆️
services-user-notification 47.02% <ø> (ø)
services-user-profile 62.18% <ø> (ø)
web 1.83% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
libs/service-portal/core/src/lib/messages.ts 50.00% <ø> (ø)

... and 1 file with indirect coverage changes


Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 83b076f...f8b0343. Read the comment docs.

@datadog-island-is
Copy link

datadog-island-is bot commented Oct 14, 2024

Datadog Report

All test runs 2e36d0e 🔗

70 Total Test Services: 0 Failed, 67 Passed
🔻 Test Sessions change in coverage: 2 decreased, 2 increased, 189 no change

Test Services
This report shows up to 10 services
Service Name Failed Known Flaky New Flaky Passed Skipped Total Time Code Coverage Change Test Service View
air-discount-scheme-backend 0 0 0 81 0 35.17s N/A Link
air-discount-scheme-web 0 0 0 2 0 9.99s 1 no change Link
api 0 0 0 4 0 3.54s N/A Link
api-domains-air-discount-scheme 0 0 0 6 0 21.65s N/A Link
api-domains-assets 0 0 0 3 0 13.93s 1 no change Link
api-domains-auth-admin 0 0 0 18 0 13.75s N/A Link
api-domains-communications 0 0 0 5 0 32.03s N/A Link
api-domains-criminal-record 0 0 0 5 0 9.74s 1 no change Link
api-domains-driving-license 0 0 0 23 0 28.66s N/A Link
api-domains-education 0 0 0 8 0 19.61s 1 no change Link

🔻 Code Coverage Decreases vs Default Branch (2)

  • nest-feature-flags - jest 56.88% (-0.45%) - Details
  • license-api - jest 33.91% (-0.03%) - Details

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🧹 Outside diff range and nitpick comments (7)
libs/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/ViewList/index.tsx (1)

Line range hint 1-58: Ensure adherence to library coding guidelines

As this component is located in a library folder, please verify the following:

  1. Reusability: The component seems tightly coupled to the signature collection feature. Consider if it can be made more generic for potential reuse across different NextJS apps.

  2. TypeScript usage: While the file uses TypeScript, there are no explicit prop type definitions or exported types. Consider defining an interface for the component's props and exporting any relevant types.

  3. Tree-shaking: The component imports several UI components from '@island.is/island-ui/core'. Ensure that only the necessary components are imported to facilitate effective tree-shaking.

Consider refactoring the component to improve its reusability and TypeScript usage:

import React from 'react';
import { Box, Stack, Text } from '@island.is/island-ui/core';
import { useLocale, useNamespaces } from '@island.is/localization';
import { m } from '../../../../lib/messages';
import { useParams } from 'react-router-dom';
import { useGetSignatureList } from '../../../../hooks';
import format from 'date-fns/format';
import Signees from './Signees';

interface ViewListProps {
  // Add any props if needed
}

export interface ListInfo {
  title: string;
  startTime: string;
  endTime: string;
  numberOfSignatures: number;
  collectors?: Array<{ name: string }>;
}

export const ViewList: React.FC<ViewListProps> = () => {
  // Component logic...
};

export default ViewList;

This refactoring adds explicit type definitions and exports the ListInfo interface, which could be useful for other components or tests.

libs/service-portal/signature-collection/src/screens/shared/SigneeView/index.tsx (1)

Line range hint 1-138: Consider enhancing type definitions and exports for better reusability

The component generally adheres to the coding guidelines for library files. However, to further improve reusability and type safety, consider the following suggestions:

  1. Define and export an interface for the component's props.
  2. Use more specific types instead of any where possible.
  3. Consider exporting any shared types or interfaces that might be useful for consumers of this component.

Example:

export interface SigneeViewProps {
  currentCollection: SignatureCollection;
}

const SigneeView: React.FC<SigneeViewProps> = ({ currentCollection }) => {
  // ... component logic ...
}

export default SigneeView;

These changes would enhance the component's reusability across different NextJS apps and improve type safety.

libs/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/ViewList/Signees/PaperSignees.tsx (2)

74-80: Improved error handling and user feedback. Consider type safety enhancements.

The changes improve the error handling and user feedback mechanism by checking the success status of the operation and displaying appropriate toast messages. Good job on calling refetchSignees only on success to prevent unnecessary refetches.

To further enhance the code:

  1. Consider adding type safety for the res object:

    onCompleted: (res: { success: boolean }) => {
      if (res?.success) {
        // ...
      }
    }
  2. The error case in onCompleted might be redundant with the onError callback. You could simplify it to:

    onCompleted: (res: { success: boolean }) => {
      if (res?.success) {
        toast.success(formatMessage(m.paperSigneeSuccess))
        refetchSignees()
      }
    },
    onError: () => {
      toast.error(formatMessage(m.paperSigneeError))
    },

Line range hint 1-1: Consider exporting types for better reusability

The component adheres well to the coding guidelines for libs directory files, using TypeScript and shared libraries. To further enhance reusability across different NextJS apps, consider exporting the prop types of the PaperSignees component.

Add the following at the beginning of the file:

export interface PaperSigneesProps {
  listId: string;
  refetchSignees: () => void;
}

Then update the component definition:

export const PaperSignees: React.FC<PaperSigneesProps> = ({
  listId,
  refetchSignees,
}) => {
  // ...
}

This change will make it easier for other parts of the application to import and use the PaperSignees component with proper type checking.

libs/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/index.tsx (1)

190-194: LGTM! Consider consistent formatting for readability.

The change improves internationalization by using a localized message for the tooltip text, which enhances user understanding and aligns with the coding guidelines for reusability across different NextJS apps.

For consistency with other similar Tooltip components in this file (e.g., line 84), consider formatting the Tooltip props on separate lines:

<Tooltip
  placement="right"
  text={formatMessage(m.supervisorsInfo)}
  color="blue400"
/>
libs/service-portal/signature-collection/src/lib/messages.ts (2)

176-179: Improved clarity and user guidance for access description.

The updated actorNoAccessDescription message provides more specific information about who can create a signature collection and what actions users can take. This change enhances user understanding and guidance.

Consider adding a link to the location where users can create a signature collection. This could be done by replacing "hér" with a more descriptive text and wrapping it in markdown link syntax. For example:

- 'Eingöngu kennitölur sem hafa skráðan listabókstaf geta stofnað meðmælendasöfnun. Ef þú átt listabókstaf geturðu stofnað meðmælendasöfnun hér.',
+ 'Eingöngu kennitölur sem hafa skráðan listabókstaf geta stofnað meðmælendasöfnun. Ef þú átt listabókstaf geturðu [stofnað meðmælendasöfnun á þessari síðu](/path-to-create-collection).',

Replace /path-to-create-collection with the actual path where users can create a signature collection.


358-363: Clear explanation of supervisor access rights added.

The new supervisorsInfo message provides valuable information about the role and permissions of supervisors in the signature collection process. This addition enhances transparency and user understanding.

For consistency with other messages in the file, consider removing the trailing space in the defaultMessage. Apply this minor change:

   defaultMessage:
-     'Umsjónaraðilar hafa aðgang að öllum upplýsingum safnananna en geta ekki eytt söfnununum. ',
+     'Umsjónaraðilar hafa aðgang að öllum upplýsingum safnananna en geta ekki eytt söfnununum.',
   description: '',
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 88a5891 and f8b0343.

📒 Files selected for processing (7)
  • libs/service-portal/core/src/lib/messages.ts (1 hunks)
  • libs/service-portal/signature-collection/src/lib/messages.ts (2 hunks)
  • libs/service-portal/signature-collection/src/lib/navigation.ts (1 hunks)
  • libs/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/ViewList/Signees/PaperSignees.tsx (1 hunks)
  • libs/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/ViewList/index.tsx (1 hunks)
  • libs/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/index.tsx (1 hunks)
  • libs/service-portal/signature-collection/src/screens/shared/SigneeView/index.tsx (1 hunks)
🧰 Additional context used
📓 Path-based instructions (7)
libs/service-portal/core/src/lib/messages.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/service-portal/signature-collection/src/lib/messages.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/service-portal/signature-collection/src/lib/navigation.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/ViewList/Signees/PaperSignees.tsx (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/ViewList/index.tsx (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/service-portal/signature-collection/src/screens/Parliamentary/OwnerView/index.tsx (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/service-portal/signature-collection/src/screens/shared/SigneeView/index.tsx (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
🔇 Additional comments (3)
libs/service-portal/signature-collection/src/lib/navigation.ts (1)

11-11: LGTM! Verify consistency of the new message key.

The change to use m.signatureCollectionParliamentaryListsCompany for the description makes it more specific to company signature collections, which is a good improvement for clarity.

Let's verify that this new message key is defined and used consistently:

This script will help ensure that the new message key is properly defined and that we haven't missed updating it in any other navigation-related files.

libs/service-portal/signature-collection/src/screens/shared/SigneeView/index.tsx (1)

110-110: Improved localization for AlertMessage

This change enhances the localization support for the alert message. By using formatMessage(m.actorNoAccessDescription) instead of the static defaultMessage, the component now dynamically formats the message based on the current locale. This is consistent with how other messages in the component are handled and aligns with best practices for internationalization.

Good job on improving the user experience for different locales!

libs/service-portal/core/src/lib/messages.ts (1)

568-572: New message for parliamentary lists signature collection added correctly.

The new message signatureCollectionParliamentaryListsCompany has been added with the correct format and follows the existing pattern. The id and defaultMessage are appropriate for the context.

Let's check if there are any related messages that might need updates:

@kodiakhq kodiakhq bot merged commit df6c638 into main Oct 15, 2024
200 checks passed
@kodiakhq kodiakhq bot deleted the admin_reportdate branch October 15, 2024 10:09
kksteini pushed a commit that referenced this pull request Oct 16, 2024
* fix(portals-admin): adding report date

* chore: nx format:write update dirty files

* tweak

* tweak supervisors info

* chore: nx format:write update dirty files

* tweak

* message - company card

* tweak

* t

* t

* chore: nx format:write update dirty files

---------

Co-authored-by: andes-it <builders@andes.is>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
kodiakhq bot added a commit that referenced this pull request Oct 16, 2024
* fix(service-portal): company route signature collections (#16382)

* draft

* chore: nx format:write update dirty files

* fix: company path

* tweaks

* p

* view list company path

* chore: nx format:write update dirty files

* nav tweak

---------

Co-authored-by: andes-it <builders@andes.is>
Co-authored-by: Ásdís Erna Guðmundsdóttir <disa.erna@gmail.com>

* fix(service-portal): sp list submitted (#16383)

* fix(service-portal): sp list submitted

* tweak

* chore: nx format:write update dirty files

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
Co-authored-by: andes-it <builders@andes.is>

* fix(portals-admin): adding report date (#16384)

* fix(portals-admin): adding report date

* chore: nx format:write update dirty files

* tweak

* tweak supervisors info

* chore: nx format:write update dirty files

* tweak

* message - company card

* tweak

* t

* t

* chore: nx format:write update dirty files

---------

Co-authored-by: andes-it <builders@andes.is>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

* fix(signature-collection): tweaks 15.10 (#16402)

* tweaka

* chore: nx format:write update dirty files

---------

Co-authored-by: andes-it <builders@andes.is>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

* fix(signature-collection): Tweaks for parliamentary collection (#16407)

* Tweaks for parliamentary collection

* revertt'

* Update libs/api/domains/signature-collection/src/lib/signatureCollection.service.ts

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* managers should see other managers

---------

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

* fix(signature-collection): Fix paper signatures for candidacy (#16411)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

* fix(signature-collections): ongoing updates (#16409)

* tweaks

* tweak - create list

* copylink

* chore: nx format:write update dirty files

---------

Co-authored-by: andes-it <builders@andes.is>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

---------

Co-authored-by: albinagu <47886428+albinagu@users.noreply.github.com>
Co-authored-by: andes-it <builders@andes.is>
Co-authored-by: Ásdís Erna Guðmundsdóttir <disa.erna@gmail.com>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
Co-authored-by: juni-haukur <158475136+juni-haukur@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automerge Merge this PR as soon as all checks pass
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants