code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/assets/js/modules/search-console/components/dashboard/SearchFunnelWidget/Overview.js b/assets/js/modules/search-console/components/dashboard/SearchFunnelWidget/Overview.js @@ -43,7 +43,6 @@ import { isZeroReport } from '../../../../analytics/util'; import ActivateModuleCTA from '../../../../../components/A...
2
diff --git a/lib/autotune-prep/index.js b/lib/autotune-prep/index.js @@ -27,27 +27,27 @@ function generate (inputs) { if (opts.profile.curve === 'bilinear') { console.error('--tune-insulin-curve is set but only valid for exponential curves'); } else { - let minDeviations = 1000000; - let newDIA = 0; - let diaDeviations...
14
diff --git a/articles/quickstart/spa/angular-beta/02-calling-an-api.md b/articles/quickstart/spa/angular-beta/02-calling-an-api.md @@ -225,10 +225,6 @@ With this in place, modify the application router so that this new page can be a import { ExternalApiComponent } from './external-api/external-api.component'; const rou...
2
diff --git a/imports/client/ui/components/SharePanel/index.js b/imports/client/ui/components/SharePanel/index.js @@ -36,7 +36,7 @@ import './styles.scss' */ // NOTE: testing facebook share on local machine will lead to an error page if target domain is localhost -// const url = window.location +// const url = window.lo...
14
diff --git a/src/component/props.js b/src/component/props.js @@ -73,7 +73,7 @@ export type BooleanPropDefinitionType<T : boolean, P> = PropDefinitionType<T, P, export type StringPropDefinitionType<T : string, P> = PropDefinitionType<T, P, 'string'>; export type NumberPropDefinitionType<T : number, P> = PropDefinitionTy...
11
diff --git a/src/patterns/components/masthead/default.hbs b/src/patterns/components/masthead/default.hbs @@ -80,50 +80,50 @@ hasAngularCodeInfo: true data-sprk-mobile-nav="mobileNav" role="navigation" data-id="navigation-narrow-1"> - <ul class="sprk-c-Accordion sprk-c-Accordion--navigation sprk-b-List sprk-b-List--bare...
3
diff --git a/lib/tasks/user_migrator.rake b/lib/tasks/user_migrator.rake @@ -117,6 +117,7 @@ namespace :cartodb do def clean_user_metadata(user) carto_user = Carto::User.find(user.id) carto_user.assets.each(&:delete) + carto_user.visualizatons.each(&:destroy) carto_user.destroy user.before_destroy(skip_table_drop: true...
2
diff --git a/cli/scripts/move-to-org.zsh b/cli/scripts/move-to-org.zsh @@ -22,11 +22,10 @@ find \ --expression="s|$OLD_REPO_PATH|$NEW_REPO_PATH|g" \ __FILE__ -cat \ - $PACKAGE/package.json \ - | jq \ - ".repository = .repository + {directory:\"cli/packages/$1\"}" \ - > $PACKAGE/package.json +jq ".repository = .reposito...
7
diff --git a/src/6_branch.js b/src/6_branch.js @@ -802,28 +802,6 @@ Branch.prototype['logout'] = wrap(callback_params.CALLBACK_ERR, function(done) { }); }); -/** - * @function Branch.getBrowserFingerprintId - * @param {function(?Error, data=)=} callback - callback to read a user's browser-fingerprint-id - * - * Returns...
2
diff --git a/modules/site/parent_templates/site/common/css/bootstrap.css b/modules/site/parent_templates/site/common/css/bootstrap.css @@ -6160,3 +6160,30 @@ a.badge:focus { .affix { position: fixed; } + + +@media print { + + .navbar, #contentTable, .carousel-control, section .btn-mini.pull-right { + display: none; + }...
7
diff --git a/src/views/preview/project-view.jsx b/src/views/preview/project-view.jsx @@ -282,6 +282,8 @@ class Preview extends React.Component { adminModalOpen: false }); } + if (messageEvent.data === 'openPanel') this.handleOpenAdminPanel(); + if (messageEvent.data === 'closePanel') this.handleCloseAdminPanel(); } han...
11
diff --git a/generators/generator-constants.js b/generators/generator-constants.js @@ -33,7 +33,7 @@ const NPM_VERSION = commonPackageJson.devDependencies.npm; const OPENAPI_GENERATOR_CLI_VERSION = '2.5.1'; // Libraries version -const JHIPSTER_DEPENDENCIES_VERSION = '7.9.1'; +const JHIPSTER_DEPENDENCIES_VERSION = '7.9....
3
diff --git a/src/core/operations/Substitute.mjs b/src/core/operations/Substitute.mjs @@ -34,10 +34,49 @@ class Substitute extends Operation { "name": "Ciphertext", "type": "binaryString", "value": "XYZABCDEFGHIJKLMNOPQRSTUVW" + }, + { + "name": "Ignore case", + "type": "boolean", + "value": false } ]; } + /** + * Conve...
0
diff --git a/tests/beaker_compat_test.py b/tests/beaker_compat_test.py @@ -8,6 +8,40 @@ from __future__ import absolute_import, division, print_function import pytest +def test_anonymous_user(): + _test_cookie( + '978f20c7f29a4838a9f16c0dbc61d044.cache', + 'net.sirepo.first_visit=1535555450168; net.sirepo.get_started_n...
1
diff --git a/packages/composer-playground/src/app/services/wallet.service.spec.ts b/packages/composer-playground/src/app/services/wallet.service.spec.ts @@ -6,6 +6,7 @@ import { TestBed, inject, fakeAsync, tick } from '@angular/core/testing'; import { WalletService } from './wallet.service'; import * as sinon from 'sin...
7
diff --git a/Source/Core/ClippingPlaneCollection.js b/Source/Core/ClippingPlaneCollection.js @@ -119,7 +119,7 @@ define([ * * @memberof ClippingPlaneCollection.prototype * @type {Boolean} - * @default true + * @default false */ unionClippingRegions : { get : function() {
3
diff --git a/src/commands/deploy.js b/src/commands/deploy.js @@ -130,19 +130,26 @@ class DeployCommand extends Command { } catch (e) { switch (true) { case e.name === 'JSONHTTPError': { - this.error(e.json.message) + this.warn(`JSONHTTPError: ${e.json.message} ${e.status}`) + this.warn(`\n${JSON.stringify(e, null, ' ')...
7
diff --git a/src/components/foregroundNotification/foregroundNotification.tsx b/src/components/foregroundNotification/foregroundNotification.tsx -import { get, isEmpty, some } from 'lodash'; +import { get } from 'lodash'; import React, { useEffect, useRef, useState } from 'react'; -import { Animated, Text, TouchableOpa...
7
diff --git a/tools/remark/plugins/remark-html-equation-src-urls/lib/transformer.js b/tools/remark/plugins/remark-html-equation-src-urls/lib/transformer.js @@ -32,33 +32,35 @@ var LABEL = /data-equation="eq:([^"]*)">/; function factory( opts ) { return transformer; /** - * Transforms a Markdown file. + * Transforms a Ma...
10
diff --git a/app/assets/src/components/visualizations/heatmap/Heatmap.js b/app/assets/src/components/visualizations/heatmap/Heatmap.js @@ -478,8 +478,7 @@ export default class Heatmap { ); // Set up space bar+click to pan behavior. - d3 - .select("body") + d3.select("body") .on("keydown", () => { if (d3.event.code === ...
14
diff --git a/chatbot-conversational_AI/update-bot/app/update-bot.js b/chatbot-conversational_AI/update-bot/app/update-bot.js @@ -9,11 +9,11 @@ async function main() { const [stackData, dbData, caiCredentials] = await Promise.all([get_stackQuestions(), get_dbData(db_request), get_caiCredentials()]); var update_all_quest...
7
diff --git a/packages/wast-parser/src/tokenizer.js b/packages/wast-parser/src/tokenizer.js @@ -309,8 +309,10 @@ function tokenize(input: string) { while ( (char !== undefined && numberLiterals.test(char)) || (lookbehind() === "p" && char === "+") || + (lookbehind() === "p" && char === "-") || + (lookbehind() === "e" &&...
11
diff --git a/core/algorithm-queue/lib/metrics/aggregation-metrics-factory.js b/core/algorithm-queue/lib/metrics/aggregation-metrics-factory.js @@ -170,14 +170,14 @@ class AggregationMetricsFactory { */ _histogram(metric, task, metricOperation) { const metricData = { - id: task.taskId, + id: `${task.taskId}-${task.statu...
0
diff --git a/README.md b/README.md # Why ? 1. You prefer to be [D.R.Y.](https://en.wikipedia.org/wiki/Don%27t_repeat_yourself) and build reusable web components on a gradual learning curve. - 2. Because [You _(probably)_ don't need a Javascript Framework](https://slack-files.com/T03JT4FC2-F151AAF7A-13fe6f98da). + 2. Be...
1
diff --git a/token-metadata/0xC0134b5B924c2FCA106eFB33C45446c466FBe03e/metadata.json b/token-metadata/0xC0134b5B924c2FCA106eFB33C45446c466FBe03e/metadata.json "symbol": "ALEPH", "address": "0xC0134b5B924c2FCA106eFB33C45446c466FBe03e", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED...
3
diff --git a/token-metadata/0x4599836c212CD988EAccc54C820Ee9261cdaAC71/metadata.json b/token-metadata/0x4599836c212CD988EAccc54C820Ee9261cdaAC71/metadata.json "symbol": "CID", "address": "0x4599836c212CD988EAccc54C820Ee9261cdaAC71", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/workshops/terraform.md b/workshops/terraform.md @@ -78,7 +78,7 @@ Advanced Terraform Snippets Generator | Richard Sentino | [mindginative.terrafor Use `CTRL`+`SHIFT`+`X` to open the extensions sidebar. You can search and install the extensions from within there. - +For Windows Subsystem for Linux users the...
12
diff --git a/layouts/partials/helpers/slot.html b/layouts/partials/helpers/slot.html {{- $slot := .slot -}} +{{- $slot_name := printf "%s/%s" .root.self.File.BaseFileName $slot -}} +{{- $nested_level := .root.nested_level | default 0 -}} {{- $page_scratch := .root.page_scratch -}} -{{- $slot_name := printf "%s/%s" $.ro...
0
diff --git a/src/tree/Stage.mjs b/src/tree/Stage.mjs @@ -176,7 +176,7 @@ export default class Stage extends EventEmitter { opt('memoryPressure', 24e6); opt('bufferMemory', 2e6); opt('textRenderIssueMargin', 0); - opt('fontSharp',{precision:0.6666666667, fontSize: 39}) + opt('fontSharp',{precision:0.6666666667, fontSize...
3
diff --git a/Source/Scene/Scene.js b/Source/Scene/Scene.js @@ -1928,7 +1928,7 @@ define([ if (environmentState.useGlobeDepthFramebuffer) { framebuffer = scene._globeDepth.framebuffer; } else if (environmentState.usePostProcess) { - framebuffer = scene._sceneFramebuffer.getColorFramebuffer(); + framebuffer = scene._scen...
1
diff --git a/source/Overture/views/controls/RichTextView.js b/source/Overture/views/controls/RichTextView.js @@ -75,6 +75,7 @@ const RichTextView = Class({ isFocussed: false, isDisabled: false, tabIndex: undefined, + label: undefined, allowTextSelection: true, @@ -203,6 +204,9 @@ const RichTextView = Class({ draw ( lay...
0
diff --git a/kitty-items-js/README.md b/kitty-items-js/README.md # kitty-items-js -API that sends transactions to the Flow Blockchain: +API that sends transactions to the Flow Blockchain, using the [flow-js-sdk](https://github.com/onflow/flow-js-sdk/). +This API currently supports: -- Mint Kibbles -- Mint Kitty Items +...
0
diff --git a/src/XR.js b/src/XR.js @@ -168,7 +168,7 @@ class XRSession extends EventTarget { set layers(layers) { this.device.layers = layers; } - requestFrameOfReference(type, options = {}) { + requestReferenceSpace(type, options = {}) { // const {disableStageEmulation = false, stageEmulationHeight = 0} = options; ret...
10
diff --git a/src/components/signup/EmailForm.js b/src/components/signup/EmailForm.js // @flow import React from 'react' import { HelperText, TextInput } from 'react-native-paper' -import { Wrapper, Title } from './components' -import logger from '../../lib/logger/pino-logger' +import type { Store } from 'undux' + impor...
0
diff --git a/packages/app/test/cypress/integration/2-basic-features/access-to-page.spec.ts b/packages/app/test/cypress/integration/2-basic-features/access-to-page.spec.ts @@ -31,7 +31,7 @@ context('Access to page', () => { }); - it('/Draft page will be successfully shown', () => { + it('/Draft page is successfully show...
10
diff --git a/README.md b/README.md # Design System for React ### Accessible, localization-friendly, presentational React components -[![Build Status](https://travis-ci.com/salesforce-ux/design-system-react.svg?token=BMXxPFKR5GZuYsqAFsEf&branch=master)](https://travis-ci.com/salesforce-ux/design-system-react) +[![Build ...
1
diff --git a/articles/client-auth/v2/mobile-desktop.md b/articles/client-auth/v2/mobile-desktop.md @@ -40,3 +40,51 @@ Once Auth0 creates the Client, navigate to the Client's **Settings** tab to add Scroll to the bottom of the page and click **Save**. ![](/media/articles/client-auth/mobile-desktop/allowed-callback-url.p...
0
diff --git a/dev-tools/docker-compose/src/release/get-changed-packages.js b/dev-tools/docker-compose/src/release/get-changed-packages.js @@ -44,10 +44,29 @@ function getDependentPackages(available = {}, changedLib = '', type = '') { return dependent } +function bumpMinor(available = {}, pkg = '') { + const found = avai...
11
diff --git a/src/image/environment.js b/src/image/environment.js -import Canvas, {Image as DOMImage, ImageData} from 'canvas'; +let Canvas, DOMImage, ImageData; +try { + const canvas = require('canvas'); + Canvas = canvas; + DOMImage = canvas.Image; + ImageData = canvas.ImageData; +} catch (e) { + // eslint-disable-nex...
11
diff --git a/src/WebformBuilder.js b/src/WebformBuilder.js @@ -4,7 +4,7 @@ import Tooltip from 'tooltip.js'; import NativePromise from 'native-promise-only'; import Components from './components/Components'; import Formio from './Formio'; -import { fastCloneDeep, bootstrapVersion } from './utils/utils'; +import { fastC...
7
diff --git a/app/shared/actions/validate.js b/app/shared/actions/validate.js @@ -55,7 +55,7 @@ export function validateAccount(account) { }; } -export function validateNode(node) { +export function validateNode(node, expectedChainId = false) { return (dispatch: () => void, getState) => { dispatch({ node, @@ -91,6 +91,1...
11
diff --git a/lib/taiko.js b/lib/taiko.js @@ -340,14 +340,16 @@ const _write = async (text,options) => { */ module.exports.attach = async (filepath, to) => { validate(); + resolvedPath = filepath ? path.resolve(process.cwd(), filepath) : path.resolve(process.cwd()); + if (!(fs.statSync(resolvedPath).isFile())) throw Err...
1
diff --git a/content/questions/equality-operators/index.md b/content/questions/equality-operators/index.md --- title: Equality Operators -tags: operators - - +tags: + - operators order: 51 date: Sun Oct 20 2019 12:14:42 GMT-0700 (Pacific Daylight Time) answers: - - 'true, false' + - 'true, false // correct' - 'true, tr...
0
diff --git a/public/javascripts/SVLabel/src/SVLabel/keyboard/Keyboard.js b/public/javascripts/SVLabel/src/SVLabel/keyboard/Keyboard.js @@ -231,7 +231,6 @@ function Keyboard (svl, canvas, contextMenu, googleMap, ribbon, zoomControl) { */ status.shiftDown = e.shiftKey; if (!status.focusOnTextField) { - var label = contex...
11
diff --git a/lib/index.js b/lib/index.js @@ -650,6 +650,7 @@ class MerossPlatform { if (!hidden) { accessory .getService(this.api.hap.Service.AccessoryInformation) + .setCharacteristic(this.api.hap.Characteristic.Name, device.devName) .setCharacteristic(this.api.hap.Characteristic.SerialNumber, device.uuid) .setCharact...
12
diff --git a/token-metadata/0xa7C71d444bf9aF4bfEd2adE75595d7512Eb4DD39/metadata.json b/token-metadata/0xa7C71d444bf9aF4bfEd2adE75595d7512Eb4DD39/metadata.json "symbol": "T1C", "address": "0xa7C71d444bf9aF4bfEd2adE75595d7512Eb4DD39", "decimals": 16, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/test/tests/operations/FlowControl.js b/test/tests/operations/FlowControl.js @@ -52,4 +52,16 @@ TestRegister.addTests([ }, ], }, + { + name: "Fork, Conditional Jump, Encodings", + input: "Some data with a 1 in it\nSome data with a 2 in it", + expectedOutput: "U29tZSBkYXRhIHdpdGggYSAxIGluIGl0\n53 6f 6d 65 20...
0
diff --git a/packages/@uppy/core/types/index.d.ts b/packages/@uppy/core/types/index.d.ts @@ -81,8 +81,8 @@ interface Locale { export interface UppyOptions { id: string; autoProceed: boolean; + allowMultipleUploads: boolean; debug: boolean; - showLinkToFileUploadResult: boolean; restrictions: { maxFileSize: number | nul...
2
diff --git a/src/userscript.ts b/src/userscript.ts @@ -45417,6 +45417,15 @@ var $$IMU_EXPORT$$; return obj; } + // thanks to anyunami2000: https://github.com/qsniyg/maxurl/issues/926 + // https://partycity6.scene7.com/is/image/PartyCity/_pdp_sq_?$_500x500_$&$product=PartyCity/177905_01 + // https://partycity6.scene7.co...
7
diff --git a/CHANGELOG.md b/CHANGELOG.md All notable changes to this project are documented in this file. -## Head +## 14.6.1 - Fixed: `custom-property-pattern` TypeError for "Cannot destructure property..." ([#5982](https://github.com/stylelint/stylelint/pull/5982)). - Fixed: `selector-type-case` false positives for S...
6
diff --git a/lib/assets/core/javascripts/cartodb/organization/organization_notification/organization_notification_view.js b/lib/assets/core/javascripts/cartodb/organization/organization_notification/organization_notification_view.js @@ -67,13 +67,35 @@ module.exports = cdb.core.View.extend({ } }, + _destroyRemoveNotifi...
2
diff --git a/templates/customdashboard/publicdashboard/program_dashboard.html b/templates/customdashboard/publicdashboard/program_dashboard.html $(document).ready(() => { $('#summaryTable').dataTable(); $('#indicatorSummary').dataTable(); + $('#beneficiariesTable').dataTable(); + $('#trainingsTable').dataTable(); + $('...
3
diff --git a/src/components/IOUConfirmationList.js b/src/components/IOUConfirmationList.js @@ -65,7 +65,7 @@ const propTypes = { phoneNumber: PropTypes.string, })).isRequired, - /** Amount split belongs to group or not */ + /** Whether this is an IOU split and belongs to a group report */ isGroupSplit: PropTypes.bool.i...
7
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md @@ -177,6 +177,32 @@ which shows the baseline image, the generated image, the diff and the json mocks To view the results of a run on CircleCI, download the `build/test_images/` and `build/test_images_diff/` artifacts into your local repo and then run `npm run start-image_...
0
diff --git a/src/components/App/index.js b/src/components/App/index.js @@ -25,7 +25,7 @@ function App(props) { </StoryCard> <StoryCard title="Introduction to Fire Stuff"> <p className="Description"> - Here are all things you don't know yet. + Here are all things you don&apos;t know yet. </p> </StoryCard> <StoryCard tit...
14
diff --git a/services/user.js b/services/user.js @@ -38,7 +38,7 @@ export const registerUser = ({ email, password, repeatPassword }) => { logger.info('Register user'); return controlTowerAPI .post( - 'auth/sign-up', + `auth/sign-up?origin=${process.env.APPLICATIONS}`, { email, password,
12
diff --git a/token-metadata/0xEb7355C2f217b3485a591332Fe13C8c5A76A581D/metadata.json b/token-metadata/0xEb7355C2f217b3485a591332Fe13C8c5A76A581D/metadata.json "symbol": "JT", "address": "0xEb7355C2f217b3485a591332Fe13C8c5A76A581D", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" }...
3
diff --git a/yarn.lock b/yarn.lock @@ -1754,13 +1754,13 @@ debug-log@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/debug-log/-/debug-log-1.0.1.tgz#2307632d4c04382b8df8a32f70b895046d52745f" -debug@2, debug@2.6.3, debug@^2.1.1, debug@^2.2.0: +debug@2, debug@2.6.3: version "2.6.3" resolved "https://regist...
1
diff --git a/dangerfile.js b/dangerfile.js // eslint-disable-next-line import/no-extraneous-dependencies import { danger, fail } from 'danger'; -const CHANGELOG_PATTERN = /^packages\/terra-([a-z-])*\/CHANGELOG\.md/i; +const CHANGELOG_PATTERN = /^packages\/terra-([a-z-0-9])*\/CHANGELOG\.md/i; const changedFiles = danger...
11
diff --git a/js/zb.js b/js/zb.js @@ -24,6 +24,7 @@ module.exports = class zb extends Exchange { 'swap': undefined, // has but unimplemented 'future': undefined, 'option': undefined, + 'cancelAllOrders': true, 'cancelOrder': true, 'createMarketOrder': undefined, 'createOrder': true,
12
diff --git a/src/AvatarIcon.jsx b/src/AvatarIcon.jsx @@ -14,6 +14,7 @@ import styles from './AvatarIcon.module.css'; import { localPlayer } from '../players.js'; import { AvatarIconer } from '../avatar-iconer.js'; import cameraManager from '../camera-manager.js' +import * as sounds from '../sounds.js' const characterIc...
0
diff --git a/src/components/play-mode/hotbar/Hotbar.jsx b/src/components/play-mode/hotbar/Hotbar.jsx @@ -235,7 +235,7 @@ const fullscreenFragmentShader = `\ // gl_FragColor.gb = uv; // gl_FragColor.a = 1.; - s = texture2D(uTex, vUv); + s = texture2D(uTex, uv); gl_FragColor = s; } else { s = vec4(0.);
4
diff --git a/.travis.yml b/.travis.yml @@ -5,22 +5,18 @@ node_js: script: - npm test branches: - # expected format: v1.0.0 on: - - /^v\d+(\.\d+)+$/ + - /^v\d+(\.\d+)+$/ # expected format: v1.0.0 - master before_deploy: - npm run build - cd dist - #- zip og-${TRAVIS_TAG}.zip * +- zip ${TRAVIS_TAG}-dist.zip * deploy: pro...
0
diff --git a/src/content/glossary/index.md b/src/content/glossary/index.md @@ -123,14 +123,6 @@ A group of at least 128 [validators](#validator) assigned to beacon and shard bl When numerous nodes (usually most nodes on the network) all have the same blocks in their locally validated best blockchain. Not to be confused...
13
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md # Contribute -## What to Contribute: +## What to Contribute Contributions to the sketch library and sketchlibs are welcome. Code that can be reused across multiple sketches should be placed in sketchlibs. @@ -11,7 +11,7 @@ Chalktalk is an educational platform and performan...
2
diff --git a/aws/cloudwatch/structured_metric.go b/aws/cloudwatch/structured_metric.go @@ -126,6 +126,15 @@ func (em *EmbeddedMetric) NewMetricDirective(namespace string) *MetricDirective // Publish the metric to the logfile func (em *EmbeddedMetric) Publish(additionalProperties map[string]interface{}) { + // BEGIN - P...
0
diff --git a/src/core/ChefWorker.js b/src/core/ChefWorker.js @@ -37,6 +37,10 @@ self.postMessage({ /** * Respond to message from parent thread. * + * An inputNum only needs to be sent when baking. + * (The background ChefWorker doesn't send one, but as + * it only deals with one input at a time it isn't needed) + * * M...
0
diff --git a/src/module/item/item.js b/src/module/item/item.js @@ -300,6 +300,9 @@ export class ItemSFRPG extends Mix(Item).with(ItemActivationMixin, ItemCapacityM chatData["whisper"] = ChatMessage.getWhisperRecipients(game.user.name); } + // Allow context menu popouts + chatData["flags.core.canPopout"] = true; + // Cr...
11
diff --git a/src/api-gateway/authMatchPolicyResource.js b/src/api-gateway/authMatchPolicyResource.js @@ -21,6 +21,10 @@ export default function authMatchPolicyResource(policyResource, resource) { return true } + if (policyResource === 'arn:aws:execute-api:*:*:*') { + return true + } + if (policyResource.includes('*') |...
0
diff --git a/lib/fetching/content-services/crowd-tangle-content-service.js b/lib/fetching/content-services/crowd-tangle-content-service.js @@ -115,7 +115,7 @@ CrowdTangleContentService.prototype._parse = function(data) { var text = data.message || data.description || data.title || data.caption || "[No Content]"; //??? ...
14
diff --git a/packages/pg/lib/client.js b/packages/pg/lib/client.js @@ -248,7 +248,7 @@ class Client extends EventEmitter { this._checkPgPass(() => { this.saslSession = sasl.startSession(msg.mechanisms) const con = this.connection - con.sendSASLInitialResponseMessage(saslSession.mechanism, saslSession.response) + con.se...
1
diff --git a/src/core/operations/RemoveLetterAccents.mjs b/src/core/operations/RemoveLetterAccents.mjs @@ -46,9 +46,8 @@ class RemoveLetterAccents extends Operation { * @returns {string} */ run(input, args) { - // const [firstArg, secondArg] = args; - - throw new OperationError("Test"); + return input.normalize("NFD")....
0
diff --git a/web/src/Main.js b/web/src/Main.js @@ -35,12 +35,16 @@ export default () => { } }); const { getActiveColorOrFallback } = useContext(ThemeContext); + const backgroundColor = getActiveColorOrFallback(['shade0'], true); + useEffect(() => { + window.document.body.style.backgroundColor = backgroundColor; + }, [ ...
12
diff --git a/src/components/dashboard/SendLinkSummary.js b/src/components/dashboard/SendLinkSummary.js // @flow import React from 'react' -import { View, Linking } from 'react-native' -import { Text } from 'react-native-elements' +import { View } from 'react-native' + +import UserStorage, { type TransactionEvent } from...
2
diff --git a/test/client/Query.test.tsx b/test/client/Query.test.tsx @@ -729,7 +729,7 @@ describe('Query component', () => { }, ]; - const onError = (queryError: ApolloError) => { + const onErrorFunc = (queryError: ApolloError) => { expect(queryError).toEqual(null); done(); }; @@ -737,7 +737,7 @@ describe('Query compon...
10
diff --git a/lib/plugins/platform/platform.js b/lib/plugins/platform/platform.js @@ -366,6 +366,9 @@ class Platform { } } subscription.event = event.stream; + if (typeof event.stream === 'object') { + subscription.event.arn = JSON.stringify(event.stream.arn); + } } else if (Object.keys(event)[0] === 's3') { subscriptio...
1
diff --git a/src/Header.jsx b/src/Header.jsx @@ -292,7 +292,8 @@ export default function Header() { if (!world.isConnected() && rigManager.localRig) { await world.connectRoom( window.location.protocol + '//' + window.location.host + ':' + - ((window.location.port ? parseInt(window.location.port, 10) : (window.location....
0
diff --git a/src/server/models/tag.js b/src/server/models/tag.js -module.exports = function(crowi) { - var debug = require('debug')('growi:models:tag'), - mongoose = require('mongoose'), - ObjectId = mongoose.Schema.Types.ObjectId, - USER_PUBLIC_FIELDS = '_id name', - tagSchema; +const mongoose = require('mongoose'); +...
14
diff --git a/src/cmd/cloud.js b/src/cmd/cloud.js @@ -132,9 +132,10 @@ class CloudCommand { return this._flashKnownApp({ api, deviceId, filePath: files[0] }); } - const version = target === 'latest' ? null : target; - if (version) { - console.log('Targeting version: ', version); + const targetVersion = target === 'lates...
10
diff --git a/Multi-Period-Daily/User.Bot.js b/Multi-Period-Daily/User.Bot.js logger.write(MODULE_NAME, "[INFO] Entering function 'start'"); } - let nextIntervalExecution = false; // This tell weather the Interval module will be executed again or not. By default it will not unless some hole have been found in the curren...
4
diff --git a/appveyor.yml b/appveyor.yml version: '{build}' environment: + global: + APPVEYOR_BUILD_SYS: MSYS2 + + # Executables from within Windows: + WIN_SHELL: C:\msys64\usr\bin\bash + WIN_MAKE: C:\msys64\usr\bin\make + WIN_SETUP: C:\msys64\usr\bin\bash + + # Executables from within MSYS2: + SHELL: /usr/bin/bash + M...
14
diff --git a/extensions/single-file-stac/json-schema/schema.json b/extensions/single-file-stac/json-schema/schema.json "description": "Single File STAC Extension to combine Collections and Items in single file catalog", "allOf": [ { -<<<<<<< HEAD "$ref": "../../catalog-spec/json-schema/catalog.json" }, { -======= ->>>>...
0
diff --git a/server/dump.js b/server/dump.js @@ -458,7 +458,7 @@ var ScopeInfo = function(scope) { * Map of variable name -> dump status. * @private @const {!Object<string, Do>} */ - this.done_ = Object.create(null); + this.doneVar_ = Object.create(null); }; /** @@ -513,7 +513,7 @@ ScopeInfo.prototype.getDone = functio...
10
diff --git a/docs/cypress-testing-library/intro.md b/docs/cypress-testing-library/intro.md @@ -29,7 +29,7 @@ and `queryAllBy` commands. ## Examples To show some simple examples (from -[https://github.com/kentcdodds/cypress-testing-library/blob/master/cypress/integration/commands.spec.js](cypress/integration/commands.sp...
1
diff --git a/package.json b/package.json "bootstrap-switch": "^3.3.4", "crypto-api": "^0.6.2", "crypto-js": "^3.1.9-1", + "d3": "^4.9.1", + "d3-hexbin": "^0.2.2", "diff": "^3.2.0", "escodegen": "^1.8.1", "esmangle": "^1.0.1",
0
diff --git a/protocols/peer/contracts/Peer.sol b/protocols/peer/contracts/Peer.sol @@ -176,8 +176,8 @@ contract Peer is IPeer, Ownable { * @notice Get a Maximum Quote from the Peer * @param _quoteTakerToken address The address of an ERC-20 token the peer would send * @param _quoteMakerToken address The address of an ER...
3
diff --git a/packages/@uppy/aws-s3-multipart/types/index.d.ts b/packages/@uppy/aws-s3-multipart/types/index.d.ts @@ -11,6 +11,7 @@ export interface AwsS3Part { interface AwsS3MultipartOptions extends PluginOptions { companionHeaders?: { [type: string]: string } companionUrl?: string + companionCookiesRule?: string getC...
0
diff --git a/kamu/common_settings.py b/kamu/common_settings.py @@ -70,7 +70,8 @@ USE_TZ = True STATIC_URL = '/static/' STATICFILES_DIRS = [ - os.path.join(BASE_DIR, 'assets/'), + os.path.join(BASE_DIR, 'assets'), + os.path.join(BASE_DIR, 'public') ] WEBPACK_LOADER = {
0
diff --git a/test/jasmine/tests/legend_test.js b/test/jasmine/tests/legend_test.js @@ -1029,7 +1029,7 @@ describe('legend interaction', function() { }); }); - describe('visible toggle', function() { + describe('@flaky visible toggle', function() { var gd; beforeEach(function() {
0
diff --git a/examples/radio-group/stories.jsx b/examples/radio-group/stories.jsx import React from 'react'; import PropTypes from 'prop-types'; -import { storiesOf, action } from '@kadira/storybook'; +import { storiesOf, action } from '@storybook/react'; import { shape } from 'airbnb-prop-types'; import RadioGroup from...
3
diff --git a/docs/api/vast-tracker.md b/docs/api/vast-tracker.md @@ -139,7 +139,7 @@ Macros will be replaced and the skip tracking URL will be called with the follow ### error(macros, isCustomCode) Send a request to the URI provided by the VAST <Error> element. `macros` is an optional Object containing macros and their...
0
diff --git a/src/parsers/GmlExtLambda.hx b/src/parsers/GmlExtLambda.hx @@ -69,12 +69,12 @@ class GmlExtLambda { static var rxLambdaArgsSp = new RegExp("^([ \t]*)([\\s\\S]*)([ \t]*)$"); static var rxLambdaPre = new RegExp("^" + "(?:///.*\r?\n)?" - + "(//!#lambda" // -> has meta? - + "([ \t]*)(\\$|\\w+)" // -> namePre, n...
11
diff --git a/nerdamer.core.js b/nerdamer.core.js @@ -960,6 +960,9 @@ var nerdamer = (function(imports) { csc: function(x) { return 1/Math.sin(x); }, sec: function(x) { return 1/Math.cos(x); }, cot: function(x) { return 1/Math.tan(x); }, + acsc: function(x) { return Math.asin(1/x); }, + asec: function(x) { return Math.a...
1
diff --git a/app/src/RoomClient.js b/app/src/RoomClient.js @@ -198,8 +198,12 @@ export default class RoomClient this._basePath = basePath; // Use displayName + this._displayName=null; if (displayName) + { store.dispatch(settingsActions.setDisplayName(displayName)); + this._displayName=displayName; + } this._tracker = '...
12
diff --git a/generators/server/files.js b/generators/server/files.js @@ -534,7 +534,7 @@ const serverFiles = { condition: generator => !(generator.applicationType !== 'microservice' && !(generator.applicationType === 'gateway' && (generator.authenticationType === 'uaa' || generator.authenticationType === 'oauth2'))), p...
10
diff --git a/README.md b/README.md @@ -266,6 +266,10 @@ TestCafe developers and community members made these plugins: * [NUnit](https://github.com/AndreyBelym/testcafe-reporter-nunit) (by [@AndreyBelym](https://github.com/AndreyBelym)) * [TimeCafe](https://github.com/jimthedev/timecafe) (by [@jimthedev](https://github....
0
diff --git a/avatars/avatars.js b/avatars/avatars.js @@ -2980,7 +2980,7 @@ class Avatar { isAudioEnabled() { return !!this.microphoneWorker; } - async setAudioEnabled(enabled) { + async setAudioEnabled(enabled) { // XXX this can be made sync if we preload the microphone worklet module... // cleanup if (this.microphoneW...
0
diff --git a/src/actions/user.js b/src/actions/user.js @@ -21,7 +21,7 @@ export const login = () => dispatch => { let provider = new firebase.auth.TwitterAuthProvider(); firebase .auth() - .signInWithRedirect(provider) + .signInWithPopup(provider) .then(result => { let user = result.user;
13
diff --git a/assets/js/googlesitekit/datastore/user/surveys.test.js b/assets/js/googlesitekit/datastore/user/surveys.test.js @@ -85,10 +85,6 @@ describe( 'core/user surveys', () => { expect( () => { registry.dispatch( STORE_NAME ).sendSurveyEvent( 'b', { foo: 'bar' } ); } ).not.toThrow(); - expect( () => { - registry.d...
2
diff --git a/bin/near-cli.js b/bin/near-cli.js @@ -81,7 +81,11 @@ const keys = { const sendMoney = { command: 'send <sender> <receiver> <amount>', desc: 'send tokens to given receiver', - builder: (yargs) => yargs, + builder: (yargs) => yargs + .option('amount', { + desc: 'Amount of NEAR tokens to send', + type: 'strin...
1