From 292ec9a150afd2633beeb7097818f5ac876bbc09 Mon Sep 17 00:00:00 2001 From: Dayenne Souza Date: Fri, 7 Nov 2025 11:04:16 -0800 Subject: [PATCH] fixes --- CHANGELOG.md | 2 ++ DEVELOPING.md | 7 ++++++- README.md | 7 ++++++- app/workflows/anonymize_case_data/workflow.py | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b974684..1dba547 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -55,6 +55,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed Detect Case Patterns `detect_patterns()` normalization to handle empty pattern DataFrames without division errors - Fixed CSV error in detect entity networks report functionality - Fixed entity network exploration to properly handle DataFrame-based trimmed attributes +- Fix typo on anonymize case data +- Fix macos instructions to install package ## [0.1.2] - 2024-10-15 diff --git a/DEVELOPING.md b/DEVELOPING.md index f1fdba8..e29c952 100644 --- a/DEVELOPING.md +++ b/DEVELOPING.md @@ -10,7 +10,12 @@ - Linux: `sudo apt-get install wkhtmltopdf` - - MacOS: `brew install homebrew/cask/wkhtmltopdf` + - macOS: + ``` + curl -L https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-2/wkhtmltox-0.12.6-2.macos-cocoa.pkg -O + + installer -pkg wkhtmltox-0.12.6-2.macos-cocoa.pkg -target ~ + ``` ## Running the app diff --git a/README.md b/README.md index 836436b..335f3fd 100644 --- a/README.md +++ b/README.md @@ -232,7 +232,12 @@ For developers who want to contribute to Intelligence Toolkit or run it from sou - wkhtmltopdf (for PDF report generation) - Windows: [Download installer](https://wkhtmltopdf.org/downloads.html) - Linux: `sudo apt-get install wkhtmltopdf` - - macOS: `brew install homebrew/cask/wkhtmltopdf` + - macOS: + ``` + curl -L https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-2/wkhtmltox-0.12.6-2.macos-cocoa.pkg -O + + installer -pkg wkhtmltox-0.12.6-2.macos-cocoa.pkg -target ~ + ``` **Setup Instructions:** 1. Clone the repository: diff --git a/app/workflows/anonymize_case_data/workflow.py b/app/workflows/anonymize_case_data/workflow.py index 8ba0973..8424442 100644 --- a/app/workflows/anonymize_case_data/workflow.py +++ b/app/workflows/anonymize_case_data/workflow.py @@ -292,7 +292,7 @@ def create(sv: ds_variables.SessionVariables, workflow: None): att_separator = ";" data_schema = acd.get_data_schema() with c1: - st.markdown("##### Constuct query") + st.markdown("##### Construct query") if len(sdf) > 0: count_holder = st.empty()