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

Add HotPick E/E issues to K2 + Shortcut #219

Merged
merged 3 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#1.3.72
- Included Expensify/Expensify Hot Pick issues to the section with the same name.
- Added `Hot Pick` label to the shortcuts right panel.
- Removed `Ops` label from the shortcuts.

#1.3.71
- Removed the whats app quality section and replaced it with a hot pick section

Expand Down
2 changes: 1 addition & 1 deletion assets/manifest-firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,

"name": "K2 for GitHub",
"version": "1.3.71",
"version": "1.3.72",
"description": "Manage your Kernel Scheduling from directly inside GitHub",

"browser_specific_settings": {
Expand Down
2 changes: 1 addition & 1 deletion assets/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,

"name": "K2 for GitHub",
"version": "1.3.71",
"version": "1.3.72",
"description": "Manage your Kernel Scheduling from directly inside GitHub",

"icons": {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "k2-extension",
"version": "1.3.71",
"version": "1.3.72",
"description": "A Chrome Extension for Kernel Schedule",
"private": true,
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions src/js/lib/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ function getHotPickIssues() {
query += ' state:open';
query += ' type:issue';
query += ' repo:Expensify/App';
query += ' repo:Expensify/Expensify';
query += ' NOT hold in:title';
query += ' label:\\"Hot Pick\\"';

Expand Down
12 changes: 6 additions & 6 deletions src/js/module/K2pickerarea/K2PickerareaPicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,25 @@ class K2PickerareaPicker extends React.Component {
shortName: '💻 Engineering',
},
'Integration Server': {
className: `${defaultBtnClass} inactive k2-integration server tooltipped tooltipped-n`,
className: `${defaultBtnClass} inactive k2-integration-server tooltipped tooltipped-n`,
shortName: '📤 IS',
},
Design: {
className: `${defaultBtnClass} inactive k2-design`,
shortName: '🎨 Design',
},
Ops: {
className: `${defaultBtnClass} inactive k2-ops`,
shortName: '💰 Ops',
},
Infra: {
className: `${defaultBtnClass} inactive k2-infra`,
shortName: '🔥 Infra',
shortName: '🚨 Infra',
},
External: {
className: `${defaultBtnClass} inactive k2-external`,
shortName: '👥 External',
},
'Hot Pick': {
className: `${defaultBtnClass} inactive k2-hot-pick`,
shortName: '🔥 Hot Pick',
},
};
// eslint-disable-next-line rulesdir/prefer-underscore-method
$('.js-issue-labels .IssueLabel').each((i, el) => {
Expand Down
Loading