code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/packages/project-disaster-trail/src/components/Game/index.js b/packages/project-disaster-trail/src/components/Game/index.js @@ -7,7 +7,7 @@ import "@hackoregon/component-library/assets/global.styles.css"; const Game = () => ( <div> <h1>This is the game</h1> - <Orb x={200} y={400} /> + <Orb /> </div> );
2
diff --git a/source/Renderer/shaders/ibl.glsl b/source/Renderer/shaders/ibl.glsl @@ -16,7 +16,7 @@ vec4 getSheenSample(vec3 reflection, float lod) vec3 getIBLRadianceGGX(vec3 n, vec3 v, float roughness, vec3 F0) { float NdotV = clampedDot(n, v); - float lod = clamp(roughness * float(u_MipCount), 0.0, float(u_MipCount))...
2
diff --git a/config/sections.yml b/config/sections.yml - id: "articles" title: "Articles" url: "/getting-started" - folder: "articles" + folder: "" default: true # - id: "sdks" - id: "apis" title: "Auth0 APIs" url: "/api/info" - folder: "articles/apis" + folder: "api" - id: "quickstarts" title: "QuickStarts" url: "/qui...
3
diff --git a/karma.conf.js b/karma.conf.js @@ -39,6 +39,12 @@ module.exports = function (config) { base: 'SauceLabs', browserName: 'MicrosoftEdge', version: 'latest' + }, + sl_safari_ios: { + base: 'SauceLabs', + browserName: 'safari', + platform: 'iOS', + version: 'latest' } };
0
diff --git a/learn/getting_started/quick_start.md b/learn/getting_started/quick_start.md @@ -100,7 +100,7 @@ Choose the release you want to use. You can find the full list [here](https://gi In the cloned repository, run the following command to access the most recent version of Meilisearch: ```bash -git checkout stable...
4
diff --git a/src/utils/rules-proxy.js b/src/utils/rules-proxy.js @@ -164,9 +164,9 @@ module.exports.createRewriter = function(config) { } function notStatic(pathname) { - return alternativePathsFor(pathname) + return !alternativePathsFor(pathname) .map(p => path.resolve(config.publicFolder, p)) - .every(p => !fs.exists...
7
diff --git a/articles/user-profile/user-profile-details.md b/articles/user-profile/user-profile-details.md --- description: This page details Auth0 User Profiles, such as sources of profile data, normalized user profiles, caching, profile structure and custom profiles. +toc: true --- # User Profile: In-Depth Details Th...
14
diff --git a/mk b/mk @@ -26,6 +26,7 @@ const pj = JSON.parse(rf('package.json')); // v:version string - "x.y.z" where z is the number of commits since the beginning of the project const v = `${pj.version.replace(/\.0$/, '')}.${sh('git rev-list --count HEAD')}`; //const isDyalogBuild = /^dyalog/.test(pj.name); +const is...
12
diff --git a/data.js b/data.js @@ -41,6 +41,14 @@ module.exports = [ url: "http://fusejs.io", source: "https://raw.githubusercontent.com/krisk/Fuse/master/src/fuse.js" }, + { + name: "Tiny Browser Framework", + github: "thedumbterminal/TinyBrowserFramework", + tags: ["framework", "web", "websocket", "browser"], + descr...
0
diff --git a/examples/_midi.orca b/examples/_midi.orca ......................................... .#.MIDI.#................................ ......................................... -...gC4................................... -.gD214TCAFE..################............ -...:02A.g....#..............#............ +...wC4......
7
diff --git a/src/strategies/latency.js b/src/strategies/latency.js @@ -58,7 +58,7 @@ class LatencyStrategy extends BaseStrategy { //this.broker.logger.debug("Latency: We are MASTER"); this.broker.localBus.on("$node.latencyMaster", function() {}); this.broker.localBus.on("$node.pong", this.processPong.bind(this)); - thi...
10
diff --git a/src/cli/domain/package-server-script/bundle/config/externalDependenciesHandlers.js b/src/cli/domain/package-server-script/bundle/config/externalDependenciesHandlers.js * */ 'use strict'; - +var format = require('stringformat'); var _ = require('underscore'); +var strings = require('../../../../../resources...
9
diff --git a/.github/workflows/build-test-release.yml b/.github/workflows/build-test-release.yml @@ -40,21 +40,14 @@ jobs: run: | jq --argjson icons "{\"16\": \"icons/dev/16x16.png\",\"48\": \"icons/dev/48x48.png\",\"128\": \"icons/dev/128x128.png\"}" '.icons = $icons | .browser_action.default_icon = $icons | .name = "...
3
diff --git a/ui/src/components/infinite-scroll/QInfiniteScroll.js b/ui/src/components/infinite-scroll/QInfiniteScroll.js @@ -141,7 +141,8 @@ export default defineComponent({ // expose public methods const vm = getCurrentInstance() Object.assign(vm.proxy, { - poll: immediatePoll, trigger, stop, reset, resume, setIndex +...
1
diff --git a/web/src/WallpaperModal.js b/web/src/WallpaperModal.js @@ -29,6 +29,11 @@ const getImagePromises = (pkg, colors, width, height) => { export default class WallpaperModal extends PureComponent { state = { image: null }; + escListener = evt => { + if (evt.key === 'Escape') { + this.props.onClose(); + } + } asy...
11
diff --git a/assets/js/googlesitekit/datastore/user/permissions.js b/assets/js/googlesitekit/datastore/user/permissions.js @@ -29,6 +29,7 @@ import Data from 'googlesitekit-data'; import { CORE_USER, PERMISSION_READ_SHARED_MODULE_DATA } from './constants'; import { CORE_MODULES } from '../../modules/datastore/constants...
4
diff --git a/src/adapters/scene.js b/src/adapters/scene.js @@ -304,6 +304,10 @@ Scene.prototype.addMarker = function(poi) { const { className, subClassName, type } = poi; const element = createIcon({ className, subClassName, type }); + element.onclick = function(e) { + // click event should not be propagated to the map...
8
diff --git a/README.md b/README.md @@ -190,6 +190,7 @@ Note that `{{ title }}` above outputs the `title` data value (this can come from // the path to the original source file for the template inputPath: "/current/page/file.md", + // New in Eleventy v0.3.4 // mapped from inputPath, useful for clean permalinks fileSlug:...
0
diff --git a/app/main/main.dev.js b/app/main/main.dev.js @@ -227,7 +227,13 @@ const disableSigningRequests = () => { }); }; -// Allow for configuration of signing requests from the UI +// Allow ESR Requests from the UI +ipcMain.on('openUri', (event, data) => { + pHandler.webContents.send('openUri', data); + pHandler.sh...
11
diff --git a/README.md b/README.md @@ -110,6 +110,11 @@ Get technical informations, open an issue/pull request or join the (amazing) com > Many other browsers may work, but are not extensively tested. +## Maintainers +Since 2019, mojs ecosystem is **maintained and developed** by: +- [Xavier Foucrier](https://github.com...
0
diff --git a/src/plots/cartesian/dragbox.js b/src/plots/cartesian/dragbox.js @@ -130,7 +130,6 @@ module.exports = function dragBox(gd, plotinfo, x, y, w, h, ns, ew) { element: dragger, gd: gd, plotinfo: plotinfo, - doubleclick: doubleClick, prepFn: function(e, startX, startY) { var dragModeNow = gd._fullLayout.dragmode...
2
diff --git a/token-metadata/0x7D29A64504629172a429e64183D6673b9dAcbFCe/metadata.json b/token-metadata/0x7D29A64504629172a429e64183D6673b9dAcbFCe/metadata.json "symbol": "VXV", "address": "0x7D29A64504629172a429e64183D6673b9dAcbFCe", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/tests/mocha/xml_test.js b/tests/mocha/xml_test.js @@ -451,30 +451,6 @@ suite('XML', function() { suite('domToBlock', function() { setup(function() { this.workspace = new Blockly.Workspace(); - Blockly.defineBlocksWithJsonArray([{ - "type": "variables_get", - "message0": "%1", - "args0": [ - { - "type": "fi...
2
diff --git a/functions/db/publicTasks/onWrite.f.js b/functions/db/publicTasks/onWrite.f.js @@ -3,6 +3,6 @@ const counting = require('../../utils/counting') exports = module.exports = functions.database.ref('/public_tasks/{taskUid}').onWrite((data, context) => { return Promise.all([ - counting.handleListChange(data.afte...
1
diff --git a/source/jquery.flot.navigate.js b/source/jquery.flot.navigate.js @@ -38,7 +38,9 @@ The plugin supports these options: axisZoom: true, //zoom axis when mouse over it is allowed plotZoom: true, //zoom axis is allowed for plot zoom axisPan: true, //pan axis when mouse over it is allowed - plotPan: true //pan a...
12
diff --git a/source/views/controls/AbstractInputView.js b/source/views/controls/AbstractInputView.js @@ -136,28 +136,21 @@ const AbstractInputView = Class({ return el('p', [description]); }, - /** - Method: O.AbstractInputView#draw + drawHelp() { + const description = this.get('description'); + return description ? thi...
7
diff --git a/src/commands/prompts/common/noFeedsFound.js b/src/commands/prompts/common/noFeedsFound.js const LocalizedPrompt = require('./utils/LocalizedPrompt.js') const Translator = require('../../../structs/Translator.js') - +const { MessageVisual } = require('discord.js-prompts') /** * @typedef {Object} Data * @pro...
1
diff --git a/netlify.toml b/netlify.toml @@ -57,7 +57,7 @@ REACT_APP_SERVER_URL = "https://good-server.herokuapp.com/" REACT_APP_GUN_PUBLIC_URL = "https://goodgun-dev.herokuapp.com/gun" REACT_APP_NETWORK = "fuse" REACT_APP_SKIP_EMAIL_VERIFICATION = "true" -REACT_APP_MARKET_URL = "https://www.facebook.com/groups/gooddol...
3
diff --git a/src/components/MultipleAvatars.js b/src/components/MultipleAvatars.js @@ -6,6 +6,7 @@ import Avatar from './Avatar'; import Tooltip from './Tooltip'; import Text from './Text'; import SubscriptAvatar from './SubscriptAvatar'; +import * as Expensicons from './Icon/Expensicons'; const propTypes = { /** Array...
12
diff --git a/layouts/partials/fragments/list.html b/layouts/partials/fragments/list.html {{- if $self.Params.tiled }} <div class="card-title"> {{- end }} - <div class="col-12 pl-0 + <div class="col-12 pl-0 pb-1 {{- partial "helpers/text-color.html" (dict "self" $self.self) -}} "> <div </div> </div> {{- if or (and $self...
0
diff --git a/closure/goog/testing/testcase.js b/closure/goog/testing/testcase.js @@ -821,7 +821,7 @@ goog.testing.TestCase.prototype.runNextTest_ = function() { */ goog.testing.TestCase.prototype.safeSetUp_ = function() { var setUps = - this.curTest_.setUps.length ? this.curTest_.setUps : [this.setUp]; + this.curTest_....
11
diff --git a/htdocs/js/ui/notebook_merger/merger_view.js b/htdocs/js/ui/notebook_merger/merger_view.js @@ -308,12 +308,14 @@ RCloudNotebookMerger.view = (function(model) { let content_area = this._compare_stage.find(`div[data-filetype="${args.fileType}"][data-filename="${filename}"]`); let panel_loader = content_area.c...
5
diff --git a/particle-system.js b/particle-system.js @@ -64,7 +64,7 @@ const _makeGeometry = maxParticles => { const geometry = planeGeometry.clone(); geometry.setAttribute('p', new THREE.InstancedBufferAttribute(new Float32Array(maxParticles * 3), 3)); // geometry.setAttribute('q', new THREE.InstancedBufferAttribute(n...
0
diff --git a/spec/realtime/auth.test.js b/spec/realtime/auth.test.js @@ -424,14 +424,17 @@ define(['ably', 'shared_helper', 'async'], function(Ably, helper, async) { */ function authCallback_failures(realtimeOptions, expectFailure) { return function(test) { - test.expect(3); - var realtime = helper.AblyRealtime(realtim...
1
diff --git a/src/components/select/Select.js b/src/components/select/Select.js @@ -32,7 +32,7 @@ export default class SelectComponent extends Field { template: '<span>{{ item.label }}</span>', selectFields: '', searchThreshold: 0.3, - uniqueValues: false, + uniqueOptions: false, tableView: true, fuseOptions: { include:...
14
diff --git a/app/components/Information/News.js b/app/components/Information/News.js @@ -8,18 +8,17 @@ import messages from './messages'; const News = () => { return ( <div> - <h3>Happy first birthday EOS !!!</h3> + <h3> + <FormattedMessage {...messages.multiChainHeader} /> + </h3> <h4> - Team GenerEOS has compiled a b...
2
diff --git a/src/containers/blocks.jsx b/src/containers/blocks.jsx @@ -210,6 +210,8 @@ class Blocks extends React.Component { const dynamicBlocksXML = this.props.vm.runtime.getBlocksXML(); const toolboxXML = makeToolboxXML(dynamicBlocksXML); this.props.onExtensionAdded(toolboxXML); + const categoryName = blocksInfo[0]....
12
diff --git a/packages/gallery/src/components/item/imageItem.js b/packages/gallery/src/components/item/imageItem.js @@ -207,7 +207,7 @@ class ImageItem extends React.Component { const shouldRenderHighResImages = !this.props.isPrerenderMode; let src = ""; - if (options.stylingParams?.itemResolutionMode === 'FULL') { + if...
14
diff --git a/package-lock.json b/package-lock.json }, "ini": { "version": "1.3.5", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", + "resolved": "", "dev": true }, "is-fullwidth-code-point":...
13
diff --git a/src/index.js b/src/index.js @@ -311,7 +311,7 @@ class Offline { const apiKeys = this.service.provider.apiKeys; const protectedRoutes = []; - if (['nodejs', 'nodejs4.3', 'babel'].indexOf(serviceRuntime) === -1) { + if (['nodejs', 'nodejs4.3', 'nodejs6.10', 'babel'].indexOf(serviceRuntime) === -1) { this.pri...
0
diff --git a/src/encoded/types/biosample.py b/src/encoded/types/biosample.py @@ -116,60 +116,27 @@ class Biosample(Item, CalculatedBiosampleSlims, CalculatedBiosampleSynonyms): 'donor.mutated_gene', 'donor.organism', 'donor.characterizations', - 'donor.characterizations.award', - 'donor.characterizations.lab', - 'donor...
2
diff --git a/admin-base/materialize/custom/_navbar.scss b/admin-base/materialize/custom/_navbar.scss nav { &.nav-extended { - + position: relative; + z-index: 1; } .nav-wrapper { .brand-logo { @@ -33,19 +34,22 @@ nav { padding: 4px 0; > span { display: inline-block; - padding: 0 0.75rem; - float: right; + padding-right...
11
diff --git a/common/lib/types/devicedetails.ts b/common/lib/types/devicedetails.ts @@ -23,8 +23,8 @@ type DevicePushState = 'ACTIVE' | 'FAILING' | 'FAILED'; type DevicePushDetails = { error?: ErrorInfo; - recipient: object; - state: DevicePushState; + recipient?: string; + state?: DevicePushState; metadata?: string; } ...
7
diff --git a/src/sdk/conference/client.js b/src/sdk/conference/client.js @@ -117,7 +117,7 @@ export const ConferenceClient = function(config, signalingImpl) { } else if (data.status === 'remove') { fireStreamRemoved(data); } else if (data.status === 'update') { - // Boardcast audio/video update status to channel so spe...
9
diff --git a/src/encoded/audit/file.py b/src/encoded/audit/file.py @@ -148,8 +148,8 @@ def audit_file_assembly(value, system): if 'derived_from' not in value: return for f in value['derived_from']: - if 'assembly' in f: - if f['assembly'] != value['assembly']: + if f.get('assembly') and value.get('assembly') and \ + f....
1
diff --git a/src/components/common/CollectionList.js b/src/components/common/CollectionList.js @@ -8,11 +8,13 @@ import FilledStarIcon from './icons/FilledStarIcon'; import { isCollectionTagSet } from '../../lib/tagUtil'; import { DownloadButton } from '../common/IconButton'; import messages from '../../resources/messa...
11
diff --git a/gitactions/publish/a11y-toolkit-baselines.sh b/gitactions/publish/a11y-toolkit-baselines.sh @@ -4,4 +4,4 @@ cd a11y-rule-benchmark echo "Installing achecker" npm install --save-dev accessibility-checker echo "Scanning list of urls from listofUls.txt with baselines" -npx achecker --baslineFolder /baselines ...
3
diff --git a/src/css/pui-variables.scss b/src/css/pui-variables.scss @@ -3,8 +3,8 @@ $base-unit: 8px; $black: #000000; $dark-gray: #253640; $gray: #647882; -$gray_btn--onLite: #5C6D76; -$gray_btn--onDark: #919FA8; +$gray--onLite: #5C6D76; +$gray--onDark: #919FA8; $accent-gray: #89969f; $light-gray: #eaedef; $white: #ff...
10
diff --git a/includes/Core/Assets/Assets.php b/includes/Core/Assets/Assets.php @@ -459,7 +459,6 @@ final class Assets { json_encode( $cache->get_current_cache_data() ) : // phpcs:ignore WordPress.WP.AlternativeFunctions.json_encode_json_encode false, 'timestamp' => time(), - 'debug' => ( defined( 'SCRIPT_DEBUG' ) && SC...
2
diff --git a/spec/support/factories/users.rb b/spec/support/factories/users.rb @@ -86,7 +86,6 @@ module CartoDB user = new_user(attributes) raise "User not valid: #{user.errors}" unless user.valid? # INFO: avoiding enable_remote_db_user - Cartodb.config[:signups] = nil user.save load_user_functions(user) user @@ -96,7 ...
2
diff --git a/avatars/avatars.js b/avatars/avatars.js @@ -1797,6 +1797,7 @@ class Avatar { // idleWalkFactor, k, lerpFn, + isPosition, target ) => { // WALK @@ -1905,6 +1906,11 @@ class Avatar { const src3 = idleAnimation.interpolants[k]; const v3 = src3.evaluate(t3); + if (isPosition) { + localQuaternion4.x = 0; + loca...
4
diff --git a/js/webcomponents/bisweb_dicomimportelement.js b/js/webcomponents/bisweb_dicomimportelement.js @@ -86,7 +86,7 @@ class DicomImportElement extends HTMLElement { let splitName = jsonFileName.split('/'); splitName.pop(); let outputFolderName = splitName.join('/'); - this.filetreepanel.importFiles(outputFolderN...
1
diff --git a/embark-ui/src/components/TextEditor.js b/embark-ui/src/components/TextEditor.js @@ -2,11 +2,11 @@ import React from 'react'; import MonacoEditor from 'react-monaco-editor'; import PropTypes from 'prop-types'; -const SUPPORTED_LANGUAGES = ['css', 'sol', 'html', 'json']; +const SUPPORTED_LANGUAGES = ['css', ...
2
diff --git a/script/cibuild b/script/cibuild #!/bin/bash set -e # halt script on error +echo "Travis Branch: $TRAVIS_BRANCH" +echo "Travis Pull Reques: $TRAVIS_PULL_REQUEST" + # Pull requests and commits to other branches shouldn't try to deploy, just build to verify if [ "$TRAVIS_PULL_REQUEST" == "true" -o "$TRAVIS_BR...
0
diff --git a/lib/assets/core/javascripts/cartodb3/data/camshaft-reference.js b/lib/assets/core/javascripts/cartodb3/data/camshaft-reference.js @@ -127,7 +127,6 @@ module.exports = { ' marker-line-color: <%= point.stroke.color.fixed %>;', ' marker-line-width: <%= point.stroke.size.fixed %>;', ' marker-line-opacity: <%= ...
2
diff --git a/test/Air/AirParser.test.js b/test/Air/AirParser.test.js @@ -795,6 +795,10 @@ describe('#AirParser', () => { expect(fareQuote.index).to.be.a('number'); expect(fareQuote.pricingInfos).to.be.an('array').and.to.have.length.above(0); + if (fareQuote.tourCode) { + expect(fareQuote.tourCode).to.match(/^[A-Z0-9]+/...
0
diff --git a/src/components/views/EngineControl/core.js b/src/components/views/EngineControl/core.js @@ -125,6 +125,8 @@ class EngineCoreView extends Component { {this.getCurrentSpeed()} -{" "} {this.props.data.engines && this.props.data.engines[0] && + this.props.data.engines[0].velocity && + this.props.data.engines[0...
1
diff --git a/publish/deployed/mainnet/feeds.json b/publish/deployed/mainnet/feeds.json "feed": "0x2c1d072e956AFFC0D435Cb7AC38EF18d24d9127c" }, "EOS": {"asset": "EOS", "feed": "0x10a43289895eAff840E8d45995BBa89f9115ECEe"}, - "BCH": {"asset": "BCH", "feed": "0x9F0F69428F923D6c95B781F89E165C9b2df9789D"}, "ETC": {"asset": ...
2
diff --git a/html/tests/tabs.tests.js b/html/tests/tabs.tests.js @@ -138,7 +138,7 @@ describe('tabs UI Events tests', () => { }); it('should activate the last tab when End is pressed', () => { - event = new window.Event('keydown'); + event = new Event('keydown'); event.keyCode = 35; expect(tab3.classList.contains('sprk...
1
diff --git a/NEWS.md b/NEWS.md @@ -12,6 +12,7 @@ This release changes the way Google ouath login works. If you are using it, you to the oauth.google_plus section of the configuration file. ### Features +* Back button support (#13115) * Account static view (#12749) * Force UTF-8 encoding in the Compass task * Trigger er...
3
diff --git a/articles/migrations/index.md b/articles/migrations/index.md @@ -88,13 +88,31 @@ If you are currently using [/delegation](/api/authentication#delegation) to prov If you have any questions, create a ticket in our [Support Center](${env.DOMAIN_URL_SUPPORT}). -### Deprecating the Usage of ID Tokens on the Auth...
3
diff --git a/components/graph/git-graph-actions.js b/components/graph/git-graph-actions.js @@ -83,7 +83,8 @@ GraphActions.Reset = function(graph, node) { var context = self.graph.currentActionContext(); if (context.node() != self.node) return false; var remoteRef = context.getRemoteRef(self.graph.currentRemote()); - re...
1
diff --git a/src/components/layout.js b/src/components/layout.js @@ -2,7 +2,7 @@ import React, { useRef, useState, useEffect } from 'react'; import { Link } from 'gatsby'; import { AboutModal } from './modal'; import { rhythm, scale } from '../utils/typography'; -import { Divider } from 'semantic-ui-react'; +import { D...
0
diff --git a/validation_utils.js b/validation_utils.js @@ -82,8 +82,13 @@ function isValidBase64(b64, len){ } function isValidHexadecimal(hex, len){ + try { return (typeof hex === "string" && (!len || hex.length === len) && hex === (new Buffer(hex, "hex")).toString("hex")); } + catch (e) { + return false; + } +} functi...
9
diff --git a/server/views/sources/source.py b/server/views/sources/source.py @@ -70,11 +70,11 @@ def source_get_stats(media_id): # geography tags geoRes = user_mc.sentenceFieldCount(media_query, '', field='tags_id_stories', tag_sets_id=TAG_SET_GEOCODER_VERSION, sample_size=GEO_SAMPLE_SIZE) - ratio_geo_tagged_count = fl...
9
diff --git a/src/js/services/storageService.js b/src/js/services/storageService.js @@ -204,10 +204,16 @@ angular.module('copayApp.services') storage.get('profile', function(getErr, getStr) { if (getErr) { cb(getErr, null); - } else { + return; + } + + if (!getStr) { + cb(null, null); + return; + } + profile = Profile.f...
9
diff --git a/features/support/env_capybara_screenshot.rb b/features/support/env_capybara_screenshot.rb @@ -2,7 +2,7 @@ require 'capybara-screenshot' require 'capybara-screenshot/cucumber' require 'mime-types' -Capybara.save_path = "features/screenshots" +Capybara.save_and_open_page_path = "features/screenshots" module ...
13
diff --git a/src/domain/session/room/timeline/deserialize.js b/src/domain/session/room/timeline/deserialize.js @@ -22,10 +22,13 @@ class Deserializer { } parseLink(node, children) { - // TODO Not equivalent to `node.href`! - // Add another HTMLParseResult method? const href = this.result.getAttributeValue(node, "href")...
8
diff --git a/libs/encryption.py b/libs/encryption.py @@ -141,9 +141,17 @@ class DeviceDataDecryptor(): except (TypeError, PaddingException, Base64LengthException) as decode_error: raise DecryptionKeyInvalidError(f"Invalid decryption key: {decode_error}") - # run RSA decryption + # Run RSA decryption try: - base64_key: ...
14
diff --git a/projects/ngx-extended-pdf-viewer/package.json b/projects/ngx-extended-pdf-viewer/package.json { "name": "ngx-extended-pdf-viewer", - "version": "0.9.36", + "version": "0.9.37", "license": "Apache-2.0", "repository": { "url": "https://github.com/stephanrauh/ngx-extended-pdf-viewer"
13
diff --git a/articles/tokens/id-token.md b/articles/tokens/id-token.md @@ -71,7 +71,17 @@ The `id_token` will contain only the claims specified as the value of the `scope If you are using [OAuth 2.0 API Authorization](/api-auth), you can add arbitrary claims to the `id_token` using [Rules](/rules), with the following f...
0
diff --git a/src/pages/using-spark/components/input.mdx b/src/pages/using-spark/components/input.mdx @@ -236,7 +236,7 @@ the Huge Text Input style: - Date Picker <ComponentPreview - componentName="input-input-text--huge-text-input" + componentName="input-text--huge-text-input" hasReact hasAngular hasHTML
3
diff --git a/src/ed.js b/src/ed.js }, SetHighlightLine(line, hadErr) { const w = this; - w.hl(line + 1); + w.me_ready.then(() => w.hl(line + 1)); hadErr < 0 && w.focus(); w.HIGHLIGHT_LINE = line + 1; },
12
diff --git a/src/botPage/view/TradeInfoPanel/index.js b/src/botPage/view/TradeInfoPanel/index.js @@ -12,7 +12,7 @@ const resetAnimation = () => { $('.line') .removeClass('active') .removeClass('complete'); - $('.stage-tooltip').removeClass('active'); + $('.stage-tooltip:not(.top)').removeClass('active'); }; const activ...
12
diff --git a/app/math-editor.js b/app/math-editor.js @@ -103,7 +103,7 @@ function initMathEditor() { } function insertNewEquation(optionalMarkup) { - window.document.execCommand('insertHTML', false, (optionalMarkup ? optionalMarkup : '') + '<img data-js="new" style="display: none"/>'); + window.document.execCommand('in...
2
diff --git a/src/pages/EnablePayments/index.js b/src/pages/EnablePayments/index.js @@ -32,7 +32,8 @@ class EnablePaymentsPage extends React.Component { return <FullScreenLoadingIndicator />; } - const currentStep = this.props.userWallet.currentStep || CONST.WALLET.STEP.ONFIDO; + // TODO: revert the default step back to...
12
diff --git a/server/game/gamesteps/conflict/conflictflow.js b/server/game/gamesteps/conflict/conflictflow.js @@ -30,7 +30,7 @@ class ConflictFlow extends BaseStepWithPipeline { new SimpleStep(this.game, () => this.announceAttackerSkill()), new SimpleStep(this.game, () => this.promptForDefenders()), new SimpleStep(this....
2
diff --git a/_config.yml b/_config.yml @@ -31,7 +31,7 @@ google_analytics: UA-96140462-1 # Github importer github_api_url: https://api.github.com github_folder: github -github_projects_prefix: ['spid-','anpr-','daf-','dati-','pianotriennale-','lg-','design-','pulse','security-'] +github_projects_prefix: ['spid-','anpr-...
7
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -49,6 +49,9 @@ class LocalPlayer extends Player { constructor() { super(); } + setAvatar(app) { + rigManager.setLocalAvatar(app); + } wear(app) { const wearComponent = app.getComponent('wear'); if (wearComponent) {
0
diff --git a/public/javascripts/SVLabel/src/SVLabel/navigation/MapService.js b/public/javascripts/SVLabel/src/SVLabel/navigation/MapService.js @@ -1431,7 +1431,7 @@ function MapService (canvas, neighborhoodModel, uiMap, params) { function setViewControlLayerCursor(type) { switch(type) { case 'ZoomOut': - uiMap.viewCont...
14
diff --git a/app/views/admin/shared/_trial_notification.html.erb b/app/views/admin/shared/_trial_notification.html.erb <% if current_user.has_feature_flag?('no_free_tier') && current_user.account_type == 'PERSONAL30' %> <div class="CDB-Text FlashMessage FlashMessage--main"> <div class="u-inner"> - <div class="FlashMess...
4
diff --git a/src/pages/signin/ResendValidationForm.js b/src/pages/signin/ResendValidationForm.js @@ -47,25 +47,16 @@ const defaultProps = { account: {}, }; -class ResendValidationForm extends React.Component { - constructor(props) { - super(props); - - if (this.props.account.errors || this.props.account.message) { - Se...
13
diff --git a/lib/determine-basal/determine-basal.js b/lib/determine-basal/determine-basal.js @@ -108,9 +108,10 @@ var determine_basal = function determine_basal(glucose_status, currenttemp, iob_ if (profile.temptargetSet) { console.error("Temp Target set, not adjusting with autosens"); } else { - min_bg = round((min_bg...
11
diff --git a/plugins/plugin-postcss/plugin.js b/plugins/plugin-postcss/plugin.js @@ -37,7 +37,7 @@ module.exports = function postcssPlugin(snowpackConfig, options) { const encodedResult = await worker.transformAsync(contents, { config, - filepath: srcPath, + filepath: srcPath || id, // note: srcPath will be undefined i...
11
diff --git a/src/matrix/room/timeline/Timeline.js b/src/matrix/room/timeline/Timeline.js @@ -145,6 +145,17 @@ export class Timeline { } _addLocalRelationsToNewRemoteEntries(entries) { + // because it is not safe to iterate a derived observable collection + // before it has any subscriptions, we bail out if this isn't +...
1
diff --git a/css/style.css b/css/style.css @@ -797,10 +797,10 @@ input[type='number'] { } .fa-instagram:hover { - /* color: #bc2a8d; */ - background: #d6249f; background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); - border-radius: 10%; + border-radius: 28%; + backg...
3
diff --git a/src/components/WhatWeDo/WhatWeDo.js b/src/components/WhatWeDo/WhatWeDo.js @@ -51,41 +51,15 @@ const WhatWeDo = forwardRef((props, ref) => { `} > <h3 css={smSectionHead}>What We Do</h3> + <h4 css={headingCss}> + <a href='/capabilities#technology'>Technology</a> + </h4> <h4 css={headingCss}> <a href='/capabi...
13
diff --git a/docs/install.md b/docs/install.md @@ -135,6 +135,11 @@ You can now download your deployment ZIP using `scp` and upload it to Lambda. Be * [gulp-responsive](https://www.npmjs.com/package/gulp-responsive) * [grunt-sharp](https://www.npmjs.com/package/grunt-sharp) + +### CLI tools + +* [sharp-cli](https://www...
0
diff --git a/assets/js/components/DashboardEntityApp.js b/assets/js/components/DashboardEntityApp.js @@ -43,7 +43,6 @@ import { ANCHOR_ID_SPEED, ANCHOR_ID_TRAFFIC, } from '../googlesitekit/constants'; -import BannerNotifications from './notifications/BannerNotifications'; import { CORE_SITE } from '../googlesitekit/dat...
2
diff --git a/packages/node_modules/@node-red/runtime/lib/nodes/flows/Subflow.js b/packages/node_modules/@node-red/runtime/lib/nodes/flows/Subflow.js @@ -47,38 +47,6 @@ function evaluateInputValue(value, type, node) { return redUtil.evaluateNodeProperty(value, type, node, null, null); } -/** - * Compose information obje...
2
diff --git a/lib/GoogleHome.js b/lib/GoogleHome.js @@ -460,6 +460,7 @@ class GoogleHome { } else { if (obj.common && obj.common.smartName && + obj.common.smartName !== true && obj.common.smartName !== 'ignore') { name = obj.common.smartName; } @@ -1316,6 +1317,7 @@ class GoogleHome { } } catch (e) { this.adapter.log.er...
9
diff --git a/schemas/webpackOptionsSchema.json b/schemas/webpackOptionsSchema.json }, { "instanceof": "RegExp" + }, + { + "items": { + "type": "string", + "absolutePath": true + }, + "minItems": 1, + "type": "array" + }, + { + "type": "string", + "absolutePath": true } ] },
11
diff --git a/primus.d.ts b/primus.d.ts -declare module 'primus' { import * as http from 'http'; import { Socket } from 'net'; - module e { - interface Primus { - socket: Socket; - library(): void; - open(): void; - write(data: any): void; - on(event: string, cb: (spark: ISpark) => void): void; - end(): void; - destroy(...
3
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md @@ -7,32 +7,20 @@ assignees: '' --- -**Describe the bug** -A clear and concise description of what the bug is. +### Description +A clear and concise description of what the issue is about. -**To Reproduce** -Steps to reproduce the ...
14
diff --git a/app/src/store.js b/app/src/store.js @@ -91,7 +91,8 @@ if (process.env.REACT_APP_DEBUG === '*' || process.env.NODE_ENV !== 'production' { const LOG_IGNORE = [ 'SET_PEER_VOLUME', - 'SET_ROOM_ACTIVE_SPEAKER' + 'SET_ROOM_ACTIVE_SPEAKER', + 'ADD_TRANSPORT_STATS' ]; const reduxLogger = createLogger(
8
diff --git a/docs/introduction/device-and-platform-support.md b/docs/introduction/device-and-platform-support.md @@ -38,7 +38,7 @@ A-Frame currently supports [`6DoF`][6dof] controllers using Brandon Jones' 4/24/ For the Oculus Rift and HTC Vive, we defer to the [Rift recommended requirements](https://www.oculus.com/en-...
1
diff --git a/source/views/RootView.js b/source/views/RootView.js -/*global window */ - import { Class } from '../core/Core'; import '../foundation/EventTarget'; // For Function#on import '../foundation/RunLoop'; // For Function#invokeInRunLoop @@ -105,10 +103,6 @@ const RootView = Class({ } }.on( 'touchmove' ) : null, ...
2
diff --git a/articles/libraries/auth0js/v8/index.md b/articles/libraries/auth0js/v8/index.md @@ -254,7 +254,7 @@ The `passwordlessVerify` method requires several paramters to be sent in its `op Note that, as with `passwordlessStart`, exactly _one_ of the optional `phoneNumber` and `email` parameters must be sent in ord...
14
diff --git a/structs/Client.js b/structs/Client.js @@ -91,7 +91,7 @@ class Client { login (token) { if (this.bot) return log.general.error('Cannot login when already logged in') - if (token instanceof Discord.Client) return this._defineBot(token) // May also be the client + if (token instanceof Discord.Client) return t...
11
diff --git a/client/src/views/header/index.js b/client/src/views/header/index.js @@ -166,6 +166,8 @@ class Header extends Component { Charts </Button> + { menus } + <Button href='https://www.advancedalgos.net/documentation-quick-start.shtml' color='inherit' @@ -192,7 +194,7 @@ class Header extends Component { </IconBut...
14