Skip to content

Commit

Permalink
chore(release): 4.12.0 (#1046)
Browse files Browse the repository at this point in the history
* Task: Add chat-id & membership-id (#1024)

* Fix: query link parsing with trailing '.' (#1033)

* Feature: DetailsList scrollbars only appear onHover (#1023)

* Feature: automatic dark light mode (#1019)

* Task: add translated aria labels (#1040)

* Task: remove sandbox api test (#1042)

* Fix: change hover scroll behaviour (#1043)

* Fix: Accessibility bugs - Aug  (#1041)

* Feature: Add Expanding Query Input Field (#1020)
  • Loading branch information
thewahome committed Aug 3, 2021
1 parent 19733ac commit c919328
Show file tree
Hide file tree
Showing 26 changed files with 401 additions and 273 deletions.
2 changes: 1 addition & 1 deletion 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": "graph-explorer-v2",
"version": "4.11.0",
"version": "4.12.0",
"private": true,
"dependencies": {
"@azure/msal-browser": "2.12.0",
Expand Down
4 changes: 1 addition & 3 deletions src/app/services/actions/theme-action-creator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Dispatch } from 'redux';

import { saveTheme } from '../../../themes/theme-utils';
import { IAction } from '../../../types/action';
import { IThemeChangedMessage } from '../../../types/query-runner';
import { CHANGE_THEME_SUCCESS } from '../redux-constants';

export function changeThemeSuccess(response: string): IAction {
Expand All @@ -12,8 +11,7 @@ export function changeThemeSuccess(response: string): IAction {
};
}

export function changeTheme(theme: IThemeChangedMessage['theme']): Function {

export function changeTheme(theme: string): Function {
saveTheme(theme);

return (dispatch: Dispatch) => {
Expand Down
2 changes: 1 addition & 1 deletion src/app/utils/status-message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function convertArrayToObject(array: any[]): object {
};

export function extractUrl(value: string): string[] | null {
return value.toString().match(/\bhttps?:\/\/\S+/gi);
return value.toString().match(/\bhttps?:\/\/\S+(?<!\.)/gi);
}

export function matchIncludesLink(matches: RegExpMatchArray, part: string) {
Expand Down
Loading

0 comments on commit c919328

Please sign in to comment.